Author: ekoneil
Date: Sun Jan 23 10:30:25 2005
New Revision: 126236

URL: http://svn.apache.org/viewcvs?view=rev&rev=126236
Log:
Data grid style support.

There is a single type of style support right now.  It uses a base style name 
which can optionally be prefixed with a user-specified name.  The default style 
class names are in the format:

  datagrid-foo

where foo can be header, footer, odd, or even when defining rows.  These can 
then be put into a CSS as:

  tr.datagrid-header
  tr.datagrid-footer
  tr.datagrid-odd

and so on.  The "datagrid" prefix can be overridden with the 
<netui-data:dataGrid>'s cssClassPrefix attribute.  If set to foo, these styles 
will be:

  tr.foo-header
  tr.foo-footer

and so on.

Next step is to provide a style policy that allows for styles to simply be:

  tr.header
  tr.footer
  tr.even
  tr.odd
  etc

where there is no prefix required and the styles can be soped into a <div>.

Feedback welcome from those of you who do CSS things more often than I.  :)

BB: self
DRT: NetUI / datagrid pass



Removed:
   
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/EmptyStylePolicy.java
Modified:
   
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/DataGridModel.java
   
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/DefaultStylePolicy.java
   
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/StylePolicy.java
   
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/rendering/table/TableRenderer.java
   
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/DataGrid.java
   
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/disabledPagerNPE.jsp
   
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/formatTest.jsp
   
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/stylePrefix.jsp
   
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/site/css/default.css
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCSSPrefix.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomHeaderStyle.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomTagAttributes.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridEmptyColumnsTag.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFooterTest.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFormatTest.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderTest.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridJavaScriptSmoke.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridModelTest.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridNestedJSTL.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerBasic.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerDisable.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerEmpty.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInFooter.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerStickyParam.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSimpleSort.xml
   
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSmokeTest.xml

Modified: 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/DataGridModel.java
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/DataGridModel.java?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/DataGridModel.java&r1=126235&p2=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/DataGridModel.java&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/DataGridModel.java
   (original)
+++ 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/DataGridModel.java
   Sun Jan 23 10:30:25 2005
@@ -51,7 +51,6 @@
 
     private StylePolicy _cssPolicy = null;
     private IPagerRenderer _pagerRenderer = null;
-    //private PagerModel _pagerModel = null;
     private PagedDataSet _dataSet = null;
     private TableRenderer _tableRenderer = null;
     private ResourceBundle _resourceBundle = null;
@@ -65,7 +64,6 @@
         _name = name;
         _jspContext = jspContext;
         _dataSet = dataSet;
-        //_pagerModel = new PagerModel(this);
         _dgss = DataGridStateService.getInstance(jspContext);
     }
 
@@ -94,15 +92,6 @@
         _dataSet = dataSet;
     }
 
-/*
-    public PagerModel getPagerModel() {
-        return _pagerModel;
-    }
-
-    public void setPagerModel(PagerModel pagerModel) {
-        _pagerModel = pagerModel;
-    }
-*/
     public IPagerRenderer getPagerRenderer() {
         if(_pagerRenderer == null)
             _pagerRenderer = new PreviousNextPagerRenderer(this);
@@ -145,18 +134,7 @@
     public void setResourceBundlePath(String resourceBundlePath) {
         _resourceBundlePath = resourceBundlePath;
     }
-/*
-    public DataGridState getDataGridState() {
-        if(_dataGridState == null)
-            _dataGridState = 
DataGridState.createInstance(((PageContext)_jspContext).getRequest(), 
getName());
 
-        return _dataGridState;
-    }
-
-    public void setDataGridState(DataGridState dataGridState) {
-        _dataGridState = dataGridState;
-    }
-*/
     public String getString(String key) {
         if(_resourceBundlePath == null)
             return Bundle.getString(key);

Modified: 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/DefaultStylePolicy.java
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/DefaultStylePolicy.java?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/DefaultStylePolicy.java&r1=126235&p2=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/DefaultStylePolicy.java&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/DefaultStylePolicy.java
        (original)
+++ 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/DefaultStylePolicy.java
        Sun Jan 23 10:30:25 2005
@@ -32,51 +32,38 @@
     }
 
     public String getTableClass() {
-        return prefix("datagrid");
+        return buildStyleClass(null);
     }
 
     public String getHeaderRowClass() {
-        return prefix("datagrid-header");
+        return buildStyleClass("header");
     }
 
     public String getFooterRowClass() {
-        return prefix("datagrid-footer");
+        return buildStyleClass("footer");
     }
 
     public String getRowClass() {
-        return prefix("datagrid-even");
+        return buildStyleClass("even");
     }
 
     public String getAltRowClass() {
-        return prefix("datagrid-odd");
+        return buildStyleClass("odd");
     }
 
     public String getDataCellClass() {
-        return prefix("datagrid-data-cell");
+        return buildStyleClass(null);
     }
 
     public String getHeaderCellClass() {
-        return prefix("datagrid-header-cell");
-    }
-
-    public String getFooterCellClass() {
-        return prefix("datagrid-footer-cell");
+        return buildStyleClass(null);
     }
 
     public String getHeaderCellSortedClass() {
-        return prefix("datagrid-header-sorted");
+        return buildStyleClass("sorted");
     }
 
-    // @todo: could cache the style names once they've been produced
-    private final String prefix(String styleBase) {
-        String prefix = getStylePrefix();
-        StringBuilder sb = new StringBuilder();
-        if(prefix != null) {
-            sb.append(prefix);
-            sb.append(DELIM);
-        }
-        sb.append(styleBase);
-
-        return sb.toString();
+    public String getDataCellSortedClass() {
+        return buildStyleClass("sorted");
     }
 }

Deleted: 
/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/EmptyStylePolicy.java
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/EmptyStylePolicy.java?view=auto&rev=126235
==============================================================================

Modified: 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/StylePolicy.java
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/StylePolicy.java?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/StylePolicy.java&r1=126235&p2=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/StylePolicy.java&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/StylePolicy.java
       (original)
+++ 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/model/style/StylePolicy.java
       Sun Jan 23 10:30:25 2005
@@ -17,16 +17,11 @@
  */
 package org.apache.beehive.netui.databinding.datagrid.model.style;
 
-import org.apache.beehive.netui.util.logging.Logger;
-
 /**
  *
  */
 public abstract class StylePolicy {
 
-    private static final Logger LOGGER = Logger.getInstance(StylePolicy.class);
-
-    /* todo: enum-ize this */
     public static final int TABLE_CLASS = 1;
     public static final int HEADER_ROW_CLASS = 2;
     public static final int FOOTER_ROW_CLASS = 3;
@@ -37,17 +32,19 @@
     public static final int FOOTER_CELL_CLASS = 8;
     public static final int HEADER_CELL_SORTED_CLASS = 9;
 
-    // todo: is this the correct delimiter relative to the CSS spec?
+    protected static final String EMPTY_STRING = "";
     protected static final String DELIM = "-";
 
     private String _stylePrefix = null;
 
     public StylePolicy() {
-        super();
     }
 
     public StylePolicy(String stylePrefix) {
-        this();
+        _stylePrefix = stylePrefix;
+    }
+
+    public void setStylePrefix(String stylePrefix) {
         _stylePrefix = stylePrefix;
     }
 
@@ -69,36 +66,22 @@
 
     public abstract String getHeaderCellClass();
 
-    public abstract String getFooterCellClass();
-
     public abstract String getHeaderCellSortedClass();
 
-    public String getClassForType(int cssClassType) {
-        switch(cssClassType) {
-            case TABLE_CLASS:
-                return getTableClass();
-            case HEADER_ROW_CLASS:
-                return getHeaderRowClass();
-            case FOOTER_ROW_CLASS:
-                return getFooterRowClass();
-            case ROW_CLASS:
-                return getRowClass();
-            case ALT_ROW_CLASS:
-                return getAltRowClass();
-            case HEADER_CELL_CLASS:
-                return getHeaderCellClass();
-            case DATA_CELL_CLASS:
-                return getDataCellClass();
-            case FOOTER_CELL_CLASS:
-                return getFooterCellClass();
-            case HEADER_CELL_SORTED_CLASS:
-                return getHeaderCellSortedClass();
-            default:
-                {
-                    if(LOGGER.isDebugEnabled())
-                        LOGGER.debug("Unable to file style class for class 
type \"" + cssClassType + "\".");
-                    return "";
-                }
+    protected String buildStyleClass(String baseStyle) {
+        if(_stylePrefix != null)
+            return prefix(baseStyle);
+        else return baseStyle;
+    }
+
+    /* @todo: could cache the style names once they've been produced */
+    private final String prefix(String style) {
+        StringBuilder sb = new StringBuilder(16);
+        sb.append(_stylePrefix);
+        if(style != null) {
+            sb.append(DELIM);
+            sb.append(style);
         }
+        return sb.toString();
     }
 }

Modified: 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/rendering/table/TableRenderer.java
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/rendering/table/TableRenderer.java?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/rendering/table/TableRenderer.java&r1=126235&p2=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/rendering/table/TableRenderer.java&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/rendering/table/TableRenderer.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/rendering/table/TableRenderer.java
 Sun Jan 23 10:30:25 2005
@@ -45,6 +45,7 @@
     private TagRenderingBase _trRenderer = null;
     private TagRenderingBase _tdRenderer = null;
     private TagRenderingBase _thRenderer = null;
+    
     private StylePolicy _stylePolicy = null;
 
     public TableRenderer(HttpServletRequest request, StylePolicy stylePolicy) {

Modified: 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/DataGrid.java
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/DataGrid.java?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/DataGrid.java&r1=126235&p2=incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/DataGrid.java&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/DataGrid.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/DataGrid.java
 Sun Jan 23 10:30:25 2005
@@ -30,7 +30,6 @@
 import org.apache.beehive.netui.databinding.datagrid.model.PagerModel;
 import org.apache.beehive.netui.databinding.datagrid.model.style.StylePolicy;
 import 
org.apache.beehive.netui.databinding.datagrid.model.style.DefaultStylePolicy;
-import 
org.apache.beehive.netui.databinding.datagrid.model.style.EmptyStylePolicy;
 import org.apache.beehive.netui.databinding.datagrid.util.PagedDataSet;
 import 
org.apache.beehive.netui.databinding.datagrid.rendering.table.TableRenderer;
 import org.apache.beehive.netui.script.common.IDataAccessProvider;
@@ -52,13 +51,9 @@
     extends AbstractSimpleTag
     implements IDataAccessProvider {
 
-    private static final String DEFAULT_STYLE_POLICY_VALUE = "default";
-    private static final String NO_STYLE_POLICY_VALUE = "none";
-    private static final StylePolicy DEFAULT_STYLE_POLICY = new 
DefaultStylePolicy();
-    private static final StylePolicy EMPTY_STYLE_POLICY = new 
EmptyStylePolicy();
+    private static final StylePolicy DEFAULT_STYLE_POLICY = new 
DefaultStylePolicy("datagrid");
 
     private String _name = null;
-    private String _stylePolicy = DEFAULT_STYLE_POLICY_VALUE;
     private String _styleClassPrefix = null;
     private String _dataSource = null;
     private String _resourceBundlePath = null;
@@ -86,13 +81,6 @@
     /**
      * @netui:attribute required="false" rtexprvalue="true"
      */
-    public void setCssClassPolicy(String cssClassPolicy) {
-        _stylePolicy = cssClassPolicy;
-    }
-
-    /**
-     * @netui:attribute required="false" rtexprvalue="true"
-     */
     public void setCssClassPrefix(String cssClassPrefix) {
         _styleClassPrefix = cssClassPrefix;
     }
@@ -108,8 +96,10 @@
     public void doTag()
         throws JspException, IOException {
 
-        // create the dataSource expression
+        HttpServletRequest request = 
(HttpServletRequest)((PageContext)getJspContext()).getRequest();
         String dataSource = getDataSource();
+        StylePolicy stylePolicy = null;
+        JspFragment fragment = getJspBody();
 
         // ensure the dataSource is a valid expression
         ExpressionHandling expr = new ExpressionHandling(this);
@@ -118,15 +108,11 @@
         Iterator iterator = IteratorFactory.createIterator(ds);
         PagedDataSet dataSet = new PagedDataSet(dataSource, iterator);
 
-        StylePolicy stylePolicy = null;
+        /* todo: extensibility -- need to go to a factory with this */
         if(_styleClassPrefix != null)
             stylePolicy = new DefaultStylePolicy(_styleClassPrefix);
-        else if(_stylePolicy == DEFAULT_STYLE_POLICY_VALUE || 
_stylePolicy.equals(DEFAULT_STYLE_POLICY_VALUE))
-            stylePolicy = DEFAULT_STYLE_POLICY;
-        else if(_stylePolicy.equals(NO_STYLE_POLICY_VALUE))
-            stylePolicy = EMPTY_STYLE_POLICY;
+        else stylePolicy = DEFAULT_STYLE_POLICY;
 
-        HttpServletRequest request = 
(HttpServletRequest)((PageContext)getJspContext()).getRequest();
         TableRenderer tableRenderer = new TableRenderer(request, stylePolicy);
 
         _gridModel = new DataGridModel(getJspContext(), _name, dataSet);
@@ -134,7 +120,6 @@
         _gridModel.setTableRenderer(tableRenderer);
         _gridModel.setResourceBundlePath(_resourceBundlePath);
 
-        JspFragment fragment = getJspBody();
         if(fragment != null) {
             StringBuilder builder = new StringBuilder(2048);
             AbstractRenderAppender appender = new 
StringBuilderRenderAppender(builder);
@@ -157,9 +142,7 @@
             PagerModel pm = _gridModel.getPagerModel();
             _gridModel.getDataSet().createWindow(pm.getRow(), pm.getRow() + 
pm.getPageSize());
 
-            /*
-              now that the model objects have been initialized, it's time to 
start rendering
-             */
+            /* now that the model objects have been initialized, it's time to 
start rendering */
             _gridModel.setRenderState(DataGridModel.START_RENDER_STATE);
 
             if(!_gridModel.isDisableDefaultPagerRendering())

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/disabledPagerNPE.jsp
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/disabledPagerNPE.jsp?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/disabledPagerNPE.jsp&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/disabledPagerNPE.jsp&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/disabledPagerNPE.jsp
       (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/disabledPagerNPE.jsp
       Sun Jan 23 10:30:25 2005
@@ -4,24 +4,27 @@
 <%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0"; 
prefix="netui-template"%>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/sql"; prefix="sql" %>
 <%@ taglib prefix="datagrid" 
tagdir="/WEB-INF/tags/org/apache/beehive/netui/test/databinding/tagfiles" %>
-<netui:html>
-    <head>
-        <title></title>
-    </head>
-    <netui:body>
+<%@ taglib uri="http://java.sun.com/jsp/jstl/sql"; prefix="sql" %>
+<%@ taglib prefix="datagrid" 
tagdir="/WEB-INF/tags/org/apache/beehive/netui/test/databinding/tagfiles" %>
+<netui-template:template templatePage="../site/template.jsp">
+    <netui-template:setAttribute name="title" value="Disabled Pager"/>
+    <netui-template:section name="body">
+    <p>
     <datagrid:portfolioXmlBean/>
     <netui-data:dataGrid dataSource="pageScope.stocks" name="customers">
         <netui-data:configurePager pageHref="disabledPagerNPE.jsp" 
disableDefaultPager="true"/>
         <netui-data:caption>
-            Customers
+            Stocks
         </netui-data:caption>
         <netui-data:columns>
             <netui-data:spanColumn headerText="Symbol" 
value="${container.item.symbol}"/>
             <netui-data:spanColumn headerText="Price" 
value="${container.item.price}"/>
         </netui-data:columns>
         <netui-data:footer>
-            <netui-data:renderPager/>
+            <td colspan="2" align="right"><netui-data:renderPager/></td>
         </netui-data:footer>
     </netui-data:dataGrid>
-  </netui:body>
-</netui:html>
\ No newline at end of file
+    <br/>
+    </p>
+    </netui-template:section>
+</netui-template:template>
\ No newline at end of file

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/formatTest.jsp
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/formatTest.jsp?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/formatTest.jsp&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/formatTest.jsp&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/formatTest.jsp
     (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/formatTest.jsp
     Sun Jan 23 10:30:25 2005
@@ -5,14 +5,14 @@
 <%@ taglib uri="http://java.sun.com/jsp/jstl/sql"; prefix="sql" %>
 <%@ taglib prefix="datagrid" 
tagdir="/WEB-INF/tags/org/apache/beehive/netui/test/databinding/tagfiles" %>
 <netui-template:template templatePage="../site/template.jsp">
-    <netui-template:setAttribute name="title" value="Basic Data Grid"/>
+    <netui-template:setAttribute name="title" value="Format Test"/>
     <netui-template:section name="body">
     <p>
     <datagrid:portfolioXmlBean/>
-    <netui-data:dataGrid dataSource="pageScope.stocks" name="customers">
+    <netui-data:dataGrid dataSource="pageScope.stocks" name="stocks">
         <netui-data:configurePager pageHref="disabledPagerNPE.jsp" 
disableDefaultPager="true"/>
         <netui-data:caption>
-            Customers
+            Stocks
         </netui-data:caption>
         <netui-data:columns>
             <netui-data:spanColumn headerText="Symbol" 
value="${container.item.symbol}">

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/stylePrefix.jsp
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/stylePrefix.jsp?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/stylePrefix.jsp&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/stylePrefix.jsp&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/stylePrefix.jsp
    (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/misc/stylePrefix.jsp
    Sun Jan 23 10:30:25 2005
@@ -7,13 +7,13 @@
   <head>
     <title>CSS Prefix Test</title>
         <style type="text/css">
-        .foo-datagrid-header {
+        .foo-header {
             background-color: #5f7797;
         }
-        .foo-datagrid-even {
+        .foo-even {
             background-color: #ffffff;
         }
-        .foo-datagrid-odd {
+        .foo-odd {
             background-color: #bfc4cb;
         }
         </style>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/site/css/default.css
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/site/css/default.css?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/site/css/default.css&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/site/css/default.css&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/site/css/default.css
    (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/databinding/datagrid/site/css/default.css
    Sun Jan 23 10:30:25 2005
@@ -1,5 +1,4 @@
-body, table
-{
+body, table {
   font-family: Helvetica, sans-serif;
   font-size: 14px; 
   font-style: normal; 
@@ -7,58 +6,52 @@
 }
 
 table.datagrid {
-  border: 1px solid #666;
+  border: 1px solid #000666;
   width: 80%;
   margin: 20px 0 20px 0;
 }
 
-th.datagrid-header-cell, td.datagrid-data-cell
-{
+th.datagrid, td.datagrid {
   padding: 2px 4px 2px 4px;
   text-align: left;
   vertical-align: top;
 }
 
-tr.datagrid-header
-{
+tr.datagrid-header {
   background-color: #5f7797;
   color: #ffffff;
 }
 
-tr.datagrid-even
-{
+tr.datagrid-even {
   background-color: #ffffff;
 }
 
-tr.datagrid-odd
-{
+tr.datagrid-odd {
   background-color:#bfc4cb;
 }
 
-td.datagrid-data-sorted, th.datagrid-header-sorted
-{
+tr.datagrid-footer {
+}
+
+td.sorted, th.sorted {
   background-color: #99bb99;
 }
 
-a.sortable 
-{
+a.sortable {
   color:#ffffff;
 }
 
-table.debug
-{
+table.debug {
   border: 1px solid #aaaa;
   width: 20%;
   margin: 20px 0 20px 0;
 }
 
-th.debug
-{
+th.debug {
   background-color: #dddddd;
 }
 
-hr.debug
-{
+hr.debug {
   width: 80%;
   color: #444444;
   height: 3px;

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCSSPrefix.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCSSPrefix.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCSSPrefix.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCSSPrefix.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCSSPrefix.xml
     (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCSSPrefix.xml
     Sun Jan 23 10:30:25 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridCSSPrefix</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>18 Jan 2005, 06:46:15.859 PM MST</ses:startDate>
+   <ses:startDate>23 Jan 2005, 10:49:55.654 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7da8</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c9c</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -74,13 +74,13 @@
   <head>
     <title>CSS Prefix Test</title>
         <style type="text/css">
-        .foo-datagrid-header {
+        .foo-header {
             background-color: #5f7797;
         }
-        .foo-datagrid-even {
+        .foo-even {
             background-color: #ffffff;
         }
-        .foo-datagrid-odd {
+        .foo-odd {
             background-color: #bfc4cb;
         }
         </style>
@@ -93,65 +93,65 @@
 
     <br/>
     Page 1 of 1&nbsp;&nbsp;&nbsp;
-<table class="foo-datagrid">
+<table class="foo">
 
         
 <thead>
-<tr class="foo-datagrid-header">
-            <th class="foo-datagrid-header-cell">Symbol</th>
+<tr class="foo-header">
+            <th class="foo">Symbol</th>
 
 
-            <th class="foo-datagrid-header-cell">Price</th>
+            <th class="foo">Price</th>
 
 
-            <th class="foo-datagrid-header-cell">Web</th>
+            <th class="foo">Web</th>
 
 
         
 </tr></thead>
 
-<tr class="foo-datagrid-even">
-            <td class="foo-datagrid-data-cell"><span>BEAS</span></td>
+<tr class="foo-even">
+            <td class="foo"><span>BEAS</span></td>
 
-            <td class="foo-datagrid-data-cell"><span>14.35</span></td>
+            <td class="foo"><span>14.35</span></td>
 
-            <td class="foo-datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="foo"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
-<tr class="foo-datagrid-odd">
-            <td class="foo-datagrid-data-cell"><span>CSCO</span></td>
+<tr class="foo-odd">
+            <td class="foo"><span>CSCO</span></td>
 
-            <td class="foo-datagrid-data-cell"><span>19.42</span></td>
+            <td class="foo"><span>19.42</span></td>
 
-            <td class="foo-datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="foo"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
-<tr class="foo-datagrid-even">
-            <td class="foo-datagrid-data-cell"><span>GE</span></td>
+<tr class="foo-even">
+            <td class="foo"><span>GE</span></td>
 
-            <td class="foo-datagrid-data-cell"><span>59.42</span></td>
+            <td class="foo"><span>59.42</span></td>
 
-            <td class="foo-datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="foo"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
-<tr class="foo-datagrid-odd">
-            <td class="foo-datagrid-data-cell"><span>RHAT</span></td>
+<tr class="foo-odd">
+            <td class="foo"><span>RHAT</span></td>
 
-            <td class="foo-datagrid-data-cell"><span>18.2</span></td>
+            <td class="foo"><span>18.2</span></td>
 
-            <td class="foo-datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="foo"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
-<tr class="foo-datagrid-even">
-            <td class="foo-datagrid-data-cell"><span>YHOO</span></td>
+<tr class="foo-even">
+            <td class="foo"><span>YHOO</span></td>
 
-            <td class="foo-datagrid-data-cell"><span>48.16</span></td>
+            <td class="foo"><span>48.16</span></td>
 
-            <td class="foo-datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="foo"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -168,7 +168,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>18 Jan 2005, 06:46:17.343 PM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:55.684 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml
   (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCaptionTest.xml
   Sun Jan 23 10:30:25 2005
@@ -1,191 +1,182 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
-   <ses:sessionName>DataGridCaptionTest</ses:sessionName>
-   <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>18 Jan 2005, 06:46:14.562 PM MST</ses:startDate>
-   <ses:description>ekoneil</ses:description>
-   <ses:tests>
-      <ses:test>
-         <ses:testNumber>1</ses:testNumber>
-         <ses:request>
-            <ses:protocol>HTTP</ses:protocol>
-            <ses:protocolVersion>1.1</ses:protocolVersion>
-            <ses:host>localhost</ses:host>
-            <ses:port>8080</ses:port>
-            <ses:uri>/coreWeb/databinding/datagrid/caption/index.jsp</ses:uri>
-            <ses:method>GET</ses:method>
-            <ses:parameters/>
-            <ses:cookies>
-               <ses:cookie>
-                  <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
-               </ses:cookie>
-            </ses:cookies>
-            <ses:headers>
-               <ses:header>
-                  <ses:name>---------------</ses:name>
-                  <ses:value>------------</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept</ses:name>
-                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-charset</ses:name>
-                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-language</ses:name>
-                  <ses:value>en-us,en;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>connection</ses:name>
-                  <ses:value>keep-alive</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>host</ses:name>
-                  <ses:value>localhost:8080</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>keep-alive</ses:name>
-                  <ses:value>300</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7daa</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>user-agent</ses:name>
-                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7) Gecko/20040614 Firefox/0.9</ses:value>
-               </ses:header>
-            </ses:headers>
-         </ses:request>
-         <ses:response>
-            <ses:statusCode>200</ses:statusCode>
-            <ses:reason/>
-            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
-       "http://www.w3.org/TR/html4/loose.dtd";>
-<html lang="en">
-
-  <head>
-    <title>NetUI Data Grid Samples</title>
-    <link rel="stylesheet" 
href="/coreWeb/databinding/datagrid/site/css/default.css" type="text/css"/>
-  </head>
-  <base 
href="http://localhost:8080/coreWeb/databinding/datagrid/caption/index.jsp";>
-  <body>
-    <p>
-    <b>Basic Data Grid</b>
-    <table width="100%">
-    <tr><td></td></tr>
-    <tr><td>
-        
-    <p>
-
- 
-
-
-<br/>
-Page 1 of 1&nbsp;&nbsp;&nbsp;
-<table class="datagrid">
-
-<caption>
-    
-        This is the table's caption.    
-    
-    
-</caption>
-
-    
-    
-<thead>
-<tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol</th>
-
-
-        <th class="datagrid-header-cell">Price</th>
-
-
-        <th class="datagrid-header-cell">Web</th>
-
-
-    
-</tr></thead>
-
-<tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
-
-        <td class="datagrid-data-cell"><span>14.35</span></td>
-
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
-
-    
-</tr>
-<tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
-
-        <td class="datagrid-data-cell"><span>19.42</span></td>
-
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
-
-    
-</tr>
-<tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
-
-        <td class="datagrid-data-cell"><span>59.42</span></td>
-
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
-
-    
-</tr>
-<tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
-
-        <td class="datagrid-data-cell"><span>18.2</span></td>
-
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
-
-    
-</tr>
-<tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
-
-        <td class="datagrid-data-cell"><span>48.16</span></td>
-
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
-
-    
-</tr>
-</table>
-
-
-<br/>
-<a href="/coreWeb/databinding/datagrid/caption/index.jsp">Reset</a>
-<br/>
-    </p>
-    
-    </td></tr>
-    </p>
-    <table>
-    <tr><td><a 
href="/netuiDRT/databinding/datagrid/basic/index.jsp">Home</a></td></tr>
-    </table>
-    </p>
-  </body>
-
-</html>]]></ses:responseBody>
-         </ses:response>
-         <ses:testResults>
-            <ses:testStatus>fail</ses:testStatus>
-         </ses:testResults>
-      </ses:test>
-   </ses:tests>
-   <ses:endDate>18 Jan 2005, 06:46:15.812 PM MST</ses:endDate>
-   <ses:sessionStatus>fail</ses:sessionStatus>
-   <ses:testCount>1</ses:testCount>
-   <ses:passedCount>0</ses:passedCount>
-   <ses:failedCount>1</ses:failedCount>
+<?xml version="1.0" encoding="UTF-8"?>
+<ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
+   <ses:sessionName>DataGridCaptionTest</ses:sessionName>
+   <ses:tester>ekoneil</ses:tester>
+   <ses:startDate>23 Jan 2005, 10:49:54.963 AM MST</ses:startDate>
+   <ses:description>ekoneil</ses:description>
+   <ses:tests>
+      <ses:test>
+         <ses:testNumber>1</ses:testNumber>
+         <ses:request>
+            <ses:protocol>HTTP</ses:protocol>
+            <ses:protocolVersion>1.1</ses:protocolVersion>
+            <ses:host>localhost</ses:host>
+            <ses:port>8080</ses:port>
+            <ses:uri>/coreWeb/databinding/datagrid/caption/index.jsp</ses:uri>
+            <ses:method>GET</ses:method>
+            <ses:parameters/>
+            <ses:cookies/>
+            <ses:headers>
+               <ses:header>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>------------</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept</ses:name>
+                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-charset</ses:name>
+                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-language</ses:name>
+                  <ses:value>en-us,en;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>connection</ses:name>
+                  <ses:value>keep-alive</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>host</ses:name>
+                  <ses:value>localhost:8080</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>keep-alive</ses:name>
+                  <ses:value>300</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c9e</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>user-agent</ses:name>
+                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7) Gecko/20040614 Firefox/0.9</ses:value>
+               </ses:header>
+            </ses:headers>
+         </ses:request>
+         <ses:response>
+            <ses:statusCode>200</ses:statusCode>
+            <ses:reason/>
+            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
+       "http://www.w3.org/TR/html4/loose.dtd";>
+<html lang="en">
+
+  <head>
+    <title>NetUI Data Grid Samples</title>
+    <link rel="stylesheet" 
href="/coreWeb/databinding/datagrid/site/css/default.css" type="text/css"/>
+  </head>
+  <base 
href="http://localhost:8080/coreWeb/databinding/datagrid/caption/index.jsp";>
+  <body>
+    <p>
+    <b>Basic Data Grid</b>
+    <table width="100%">
+    <tr><td></td></tr>
+    <tr><td>
+        
+    <p>
+
+ 
+
+
+<br/>
+Page 1 of 1&nbsp;&nbsp;&nbsp;
+<table class="datagrid">
+
+<caption>
+    
+        This is the table's caption.    
+    
+    
+</caption>
+
+    
+    
+<thead>
+<tr class="datagrid-header">
+        <th class="datagrid">Symbol</th>
+
+
+        <th class="datagrid">Price</th>
+
+
+        <th class="datagrid">Web</th>
+
+
+    
+</tr></thead>
+
+<tr class="datagrid-even">
+        <td class="datagrid"><span>BEAS</span></td>
+
+        <td class="datagrid"><span>14.35</span></td>
+
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+
+    
+</tr>
+<tr class="datagrid-odd">
+        <td class="datagrid"><span>CSCO</span></td>
+
+        <td class="datagrid"><span>19.42</span></td>
+
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+
+    
+</tr>
+<tr class="datagrid-even">
+        <td class="datagrid"><span>GE</span></td>
+
+        <td class="datagrid"><span>59.42</span></td>
+
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+
+    
+</tr>
+<tr class="datagrid-odd">
+        <td class="datagrid"><span>RHAT</span></td>
+
+        <td class="datagrid"><span>18.2</span></td>
+
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+
+    
+</tr>
+<tr class="datagrid-even">
+        <td class="datagrid"><span>YHOO</span></td>
+
+        <td class="datagrid"><span>48.16</span></td>
+
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+
+    
+</tr>
+</table>
+
+
+<br/>
+<a href="/coreWeb/databinding/datagrid/caption/index.jsp">Reset</a>
+<br/>
+    </p>
+    
+    </td></tr>
+    </p>
+    <table>
+    <tr><td><a 
href="/netuiDRT/databinding/datagrid/basic/index.jsp">Home</a></td></tr>
+    </table>
+    </p>
+  </body>
+
+</html>]]></ses:responseBody>
+         </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
+      </ses:test>
+   </ses:tests>
+   <ses:endDate>23 Jan 2005, 10:49:55.604 AM MST</ses:endDate>
+   <ses:sessionStatus>fail</ses:sessionStatus>
+   <ses:testCount>1</ses:testCount>
+   <ses:passedCount>0</ses:passedCount>
+   <ses:failedCount>1</ses:failedCount>
 </ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomHeaderStyle.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomHeaderStyle.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomHeaderStyle.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomHeaderStyle.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomHeaderStyle.xml
     (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomHeaderStyle.xml
     Sun Jan 23 10:30:25 2005
@@ -1,179 +1,179 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
-   <ses:sessionName>DataGridCustomHeaderStyle</ses:sessionName>
-   <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>18 Jan 2005, 06:46:17.406 PM MST</ses:startDate>
-   <ses:description>ekoneil</ses:description>
-   <ses:tests>
-      <ses:test>
-         <ses:testNumber>1</ses:testNumber>
-         <ses:request>
-            <ses:protocol>HTTP</ses:protocol>
-            <ses:protocolVersion>1.1</ses:protocolVersion>
-            <ses:host>localhost</ses:host>
-            <ses:port>8080</ses:port>
-            
<ses:uri>/coreWeb/databinding/datagrid/misc/customHeaderStyle.jsp</ses:uri>
-            <ses:method>GET</ses:method>
-            <ses:parameters/>
-            <ses:cookies>
-               <ses:cookie>
-                  <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
-               </ses:cookie>
-            </ses:cookies>
-            <ses:headers>
-               <ses:header>
-                  <ses:name>---------------</ses:name>
-                  <ses:value>------------</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept</ses:name>
-                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-charset</ses:name>
-                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-language</ses:name>
-                  <ses:value>en-us,en;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>connection</ses:name>
-                  <ses:value>keep-alive</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>host</ses:name>
-                  <ses:value>localhost:8080</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>keep-alive</ses:name>
-                  <ses:value>300</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7da6</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>user-agent</ses:name>
-                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; 
rv:1.7.3) Gecko/20040913 Firefox/0.10.1</ses:value>
-               </ses:header>
-            </ses:headers>
-         </ses:request>
-         <ses:response>
-            <ses:statusCode>200</ses:statusCode>
-            <ses:reason/>
-            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
-       "http://www.w3.org/TR/html4/loose.dtd";>
-<html lang="en">
-
-  <head>
-    <title>CSS Prefix Test</title>
-        <style type="text/css">
-        .foo-datagrid-header {
-            background-color: #5f7797;
-        }
-        .foo-datagrid-even {
-            background-color: #ffffff;
-        }
-        .foo-datagrid-odd {
-            background-color: #bfc4cb;
-        }
-        .custom-header {
-            background-color: #770011;
-        }
-        </style>
-  </head>
-  <body>
-    <p>
-    
- 
-
-
-    <br/>
-    Page 1 of 1&nbsp;&nbsp;&nbsp;
-<table class="foo-datagrid">
-
-        
-<thead>
-<tr class="foo-datagrid-header">
-            <th class="custom-header">Symbol</th>
-
-
-            <th class="foo-datagrid-header-cell">Price</th>
-
-
-            <th class="foo-datagrid-header-cell">Web</th>
-
-
-        
-</tr></thead>
-
-<tr class="foo-datagrid-even">
-            <td class="foo-datagrid-data-cell"><span>BEAS</span></td>
-
-            <td class="foo-datagrid-data-cell"><span>14.35</span></td>
-
-            <td class="foo-datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
-
-        
-</tr>
-<tr class="foo-datagrid-odd">
-            <td class="foo-datagrid-data-cell"><span>CSCO</span></td>
-
-            <td class="foo-datagrid-data-cell"><span>19.42</span></td>
-
-            <td class="foo-datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
-
-        
-</tr>
-<tr class="foo-datagrid-even">
-            <td class="foo-datagrid-data-cell"><span>GE</span></td>
-
-            <td class="foo-datagrid-data-cell"><span>59.42</span></td>
-
-            <td class="foo-datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
-
-        
-</tr>
-<tr class="foo-datagrid-odd">
-            <td class="foo-datagrid-data-cell"><span>RHAT</span></td>
-
-            <td class="foo-datagrid-data-cell"><span>18.2</span></td>
-
-            <td class="foo-datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
-
-        
-</tr>
-<tr class="foo-datagrid-even">
-            <td class="foo-datagrid-data-cell"><span>YHOO</span></td>
-
-            <td class="foo-datagrid-data-cell"><span>48.16</span></td>
-
-            <td class="foo-datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
-
-        
-</tr>
-    </table>
-
-
-    </p>
-  </body>
-
-</html>]]></ses:responseBody>
-         </ses:response>
-         <ses:testResults>
-            <ses:testStatus>fail</ses:testStatus>
-         </ses:testResults>
-      </ses:test>
-   </ses:tests>
-   <ses:endDate>18 Jan 2005, 06:46:18.578 PM MST</ses:endDate>
-   <ses:sessionStatus>fail</ses:sessionStatus>
-   <ses:testCount>1</ses:testCount>
-   <ses:passedCount>0</ses:passedCount>
-   <ses:failedCount>1</ses:failedCount>
+<?xml version="1.0" encoding="UTF-8"?>
+<ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
+   <ses:sessionName>DataGridCustomHeaderStyle</ses:sessionName>
+   <ses:tester>ekoneil</ses:tester>
+   <ses:startDate>23 Jan 2005, 10:49:55.764 AM MST</ses:startDate>
+   <ses:description>ekoneil</ses:description>
+   <ses:tests>
+      <ses:test>
+         <ses:testNumber>1</ses:testNumber>
+         <ses:request>
+            <ses:protocol>HTTP</ses:protocol>
+            <ses:protocolVersion>1.1</ses:protocolVersion>
+            <ses:host>localhost</ses:host>
+            <ses:port>8080</ses:port>
+            
<ses:uri>/coreWeb/databinding/datagrid/misc/customHeaderStyle.jsp</ses:uri>
+            <ses:method>GET</ses:method>
+            <ses:parameters/>
+            <ses:cookies>
+               <ses:cookie>
+                  <ses:name>JSESSIONID</ses:name>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
+               </ses:cookie>
+            </ses:cookies>
+            <ses:headers>
+               <ses:header>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>------------</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept</ses:name>
+                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-charset</ses:name>
+                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-language</ses:name>
+                  <ses:value>en-us,en;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>connection</ses:name>
+                  <ses:value>keep-alive</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>cookie</ses:name>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>host</ses:name>
+                  <ses:value>localhost:8080</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>keep-alive</ses:name>
+                  <ses:value>300</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c9a</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>user-agent</ses:name>
+                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; 
rv:1.7.3) Gecko/20040913 Firefox/0.10.1</ses:value>
+               </ses:header>
+            </ses:headers>
+         </ses:request>
+         <ses:response>
+            <ses:statusCode>200</ses:statusCode>
+            <ses:reason/>
+            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
+       "http://www.w3.org/TR/html4/loose.dtd";>
+<html lang="en">
+
+  <head>
+    <title>CSS Prefix Test</title>
+        <style type="text/css">
+        .foo-datagrid-header {
+            background-color: #5f7797;
+        }
+        .foo-datagrid-even {
+            background-color: #ffffff;
+        }
+        .foo-datagrid-odd {
+            background-color: #bfc4cb;
+        }
+        .custom-header {
+            background-color: #770011;
+        }
+        </style>
+  </head>
+  <body>
+    <p>
+    
+ 
+
+
+    <br/>
+    Page 1 of 1&nbsp;&nbsp;&nbsp;
+<table class="foo">
+
+        
+<thead>
+<tr class="foo-header">
+            <th class="custom-header">Symbol</th>
+
+
+            <th class="foo">Price</th>
+
+
+            <th class="foo">Web</th>
+
+
+        
+</tr></thead>
+
+<tr class="foo-even">
+            <td class="foo"><span>BEAS</span></td>
+
+            <td class="foo"><span>14.35</span></td>
+
+            <td class="foo"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+
+        
+</tr>
+<tr class="foo-odd">
+            <td class="foo"><span>CSCO</span></td>
+
+            <td class="foo"><span>19.42</span></td>
+
+            <td class="foo"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+
+        
+</tr>
+<tr class="foo-even">
+            <td class="foo"><span>GE</span></td>
+
+            <td class="foo"><span>59.42</span></td>
+
+            <td class="foo"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+
+        
+</tr>
+<tr class="foo-odd">
+            <td class="foo"><span>RHAT</span></td>
+
+            <td class="foo"><span>18.2</span></td>
+
+            <td class="foo"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+
+        
+</tr>
+<tr class="foo-even">
+            <td class="foo"><span>YHOO</span></td>
+
+            <td class="foo"><span>48.16</span></td>
+
+            <td class="foo"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+
+        
+</tr>
+    </table>
+
+
+    </p>
+  </body>
+
+</html>]]></ses:responseBody>
+         </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
+      </ses:test>
+   </ses:tests>
+   <ses:endDate>23 Jan 2005, 10:49:55.924 AM MST</ses:endDate>
+   <ses:sessionStatus>fail</ses:sessionStatus>
+   <ses:testCount>1</ses:testCount>
+   <ses:passedCount>0</ses:passedCount>
+   <ses:failedCount>1</ses:failedCount>
 </ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomTagAttributes.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomTagAttributes.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomTagAttributes.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomTagAttributes.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomTagAttributes.xml
   (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridCustomTagAttributes.xml
   Sun Jan 23 10:30:25 2005
@@ -1,184 +1,184 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
-   <ses:sessionName>DataGridCustomTagAttributes</ses:sessionName>
-   <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>18 Jan 2005, 06:46:18.625 PM MST</ses:startDate>
-   <ses:description>ekoneil</ses:description>
-   <ses:tests>
-      <ses:test>
-         <ses:testNumber>1</ses:testNumber>
-         <ses:request>
-            <ses:protocol>HTTP</ses:protocol>
-            <ses:protocolVersion>1.1</ses:protocolVersion>
-            <ses:host>localhost</ses:host>
-            <ses:port>8080</ses:port>
-            
<ses:uri>/coreWeb/databinding/datagrid/misc/userAttributes.jsp</ses:uri>
-            <ses:method>GET</ses:method>
-            <ses:parameters/>
-            <ses:cookies>
-               <ses:cookie>
-                  <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
-               </ses:cookie>
-            </ses:cookies>
-            <ses:headers>
-               <ses:header>
-                  <ses:name>---------------</ses:name>
-                  <ses:value>------------</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept</ses:name>
-                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-charset</ses:name>
-                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-language</ses:name>
-                  <ses:value>en-us,en;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>connection</ses:name>
-                  <ses:value>keep-alive</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>host</ses:name>
-                  <ses:value>localhost:8080</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>keep-alive</ses:name>
-                  <ses:value>300</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7da4</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>user-agent</ses:name>
-                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7) Gecko/20040614 Firefox/0.9</ses:value>
-               </ses:header>
-            </ses:headers>
-         </ses:request>
-         <ses:response>
-            <ses:statusCode>200</ses:statusCode>
-            <ses:reason/>
-            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
-       "http://www.w3.org/TR/html4/loose.dtd";>
-<html lang="en">
-
-  <head>
-    <title>NetUI Data Grid Samples</title>
-    <link rel="stylesheet" 
href="/coreWeb/databinding/datagrid/site/css/default.css" type="text/css"/>
-  </head>
-  <base 
href="http://localhost:8080/coreWeb/databinding/datagrid/misc/userAttributes.jsp";>
-  <body>
-    <p>
-    <b>Basic Data Grid</b>
-    <table width="100%">
-    <tr><td></td></tr>
-    <tr><td>
-        
-    <script language="javascript">
-function doAlert(node, index)
-{
-  alert("hello from item: " + index);
-}
-    </script>
-    <p>
-    
- 
-
-
-    Page 1 of 1&nbsp;&nbsp;&nbsp;
-<table class="datagrid">
-
-        
-<thead>
-<tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
-
-
-            <th class="datagrid-header-cell">Price</th>
-
-
-            <th class="datagrid-header-cell">Web</th>
-
-
-        
-</tr></thead>
-
-<tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span attr-test-symbol="BEAS" 
onclick="javascript:alert(this)">BEAS</span></td>
-
-            <td class="datagrid-data-cell"><span 
attr-index="1">14.35</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS"; onmouseover='doAlert(this, 
1)'><span>BEA Systems</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span attr-test-symbol="CSCO" 
onclick="javascript:alert(this)">CSCO</span></td>
-
-            <td class="datagrid-data-cell"><span attr-index="2" 
attr-onlyeven="foo">19.42</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO"; onmouseover='doAlert(this, 
2)'><span>Cisco Systems</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span attr-test-symbol="GE" 
onclick="javascript:alert(this)">GE</span></td>
-
-            <td class="datagrid-data-cell"><span 
attr-index="3">59.42</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE"; onmouseover='doAlert(this, 
3)'><span>General Electric</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span attr-test-symbol="RHAT" 
onclick="javascript:alert(this)">RHAT</span></td>
-
-            <td class="datagrid-data-cell"><span attr-index="4" 
attr-onlyeven="foo">18.2</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT"; onmouseover='doAlert(this, 
4)'><span>RedHat Systems</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span attr-test-symbol="YHOO" 
onclick="javascript:alert(this)">YHOO</span></td>
-
-            <td class="datagrid-data-cell"><span 
attr-index="5">48.16</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO"; onmouseover='doAlert(this, 
5)'><span>Yahoo Inc</span></a></td>
-
-        
-</tr>
-    </table>
-
-
-    
-    </td></tr>
-    </p>
-    <table>
-    <tr><td><a 
href="/netuiDRT/databinding/datagrid/basic/index.jsp">Home</a></td></tr>
-    </table>
-    </p>
-  </body>
-
-</html>]]></ses:responseBody>
-         </ses:response>
-         <ses:testResults>
-            <ses:testStatus>fail</ses:testStatus>
-         </ses:testResults>
-      </ses:test>
-   </ses:tests>
-   <ses:endDate>18 Jan 2005, 06:46:19.843 PM MST</ses:endDate>
-   <ses:sessionStatus>fail</ses:sessionStatus>
-   <ses:testCount>1</ses:testCount>
-   <ses:passedCount>0</ses:passedCount>
-   <ses:failedCount>1</ses:failedCount>
+<?xml version="1.0" encoding="UTF-8"?>
+<ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
+   <ses:sessionName>DataGridCustomTagAttributes</ses:sessionName>
+   <ses:tester>ekoneil</ses:tester>
+   <ses:startDate>23 Jan 2005, 10:49:55.964 AM MST</ses:startDate>
+   <ses:description>ekoneil</ses:description>
+   <ses:tests>
+      <ses:test>
+         <ses:testNumber>1</ses:testNumber>
+         <ses:request>
+            <ses:protocol>HTTP</ses:protocol>
+            <ses:protocolVersion>1.1</ses:protocolVersion>
+            <ses:host>localhost</ses:host>
+            <ses:port>8080</ses:port>
+            
<ses:uri>/coreWeb/databinding/datagrid/misc/userAttributes.jsp</ses:uri>
+            <ses:method>GET</ses:method>
+            <ses:parameters/>
+            <ses:cookies>
+               <ses:cookie>
+                  <ses:name>JSESSIONID</ses:name>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
+               </ses:cookie>
+            </ses:cookies>
+            <ses:headers>
+               <ses:header>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>------------</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept</ses:name>
+                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-charset</ses:name>
+                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-language</ses:name>
+                  <ses:value>en-us,en;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>connection</ses:name>
+                  <ses:value>keep-alive</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>cookie</ses:name>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>host</ses:name>
+                  <ses:value>localhost:8080</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>keep-alive</ses:name>
+                  <ses:value>300</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c98</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>user-agent</ses:name>
+                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7) Gecko/20040614 Firefox/0.9</ses:value>
+               </ses:header>
+            </ses:headers>
+         </ses:request>
+         <ses:response>
+            <ses:statusCode>200</ses:statusCode>
+            <ses:reason/>
+            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
+       "http://www.w3.org/TR/html4/loose.dtd";>
+<html lang="en">
+
+  <head>
+    <title>NetUI Data Grid Samples</title>
+    <link rel="stylesheet" 
href="/coreWeb/databinding/datagrid/site/css/default.css" type="text/css"/>
+  </head>
+  <base 
href="http://localhost:8080/coreWeb/databinding/datagrid/misc/userAttributes.jsp";>
+  <body>
+    <p>
+    <b>Basic Data Grid</b>
+    <table width="100%">
+    <tr><td></td></tr>
+    <tr><td>
+        
+    <script language="javascript">
+function doAlert(node, index)
+{
+  alert("hello from item: " + index);
+}
+    </script>
+    <p>
+    
+ 
+
+
+    Page 1 of 1&nbsp;&nbsp;&nbsp;
+<table class="datagrid">
+
+        
+<thead>
+<tr class="datagrid-header">
+            <th class="datagrid">Symbol</th>
+
+
+            <th class="datagrid">Price</th>
+
+
+            <th class="datagrid">Web</th>
+
+
+        
+</tr></thead>
+
+<tr class="datagrid-even">
+            <td class="datagrid"><span attr-test-symbol="BEAS" 
onclick="javascript:alert(this)">BEAS</span></td>
+
+            <td class="datagrid"><span attr-index="1">14.35</span></td>
+
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS"; onmouseover='doAlert(this, 
1)'><span>BEA Systems</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-odd">
+            <td class="datagrid"><span attr-test-symbol="CSCO" 
onclick="javascript:alert(this)">CSCO</span></td>
+
+            <td class="datagrid"><span attr-index="2" 
attr-onlyeven="foo">19.42</span></td>
+
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO"; onmouseover='doAlert(this, 
2)'><span>Cisco Systems</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-even">
+            <td class="datagrid"><span attr-test-symbol="GE" 
onclick="javascript:alert(this)">GE</span></td>
+
+            <td class="datagrid"><span attr-index="3">59.42</span></td>
+
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE"; onmouseover='doAlert(this, 
3)'><span>General Electric</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-odd">
+            <td class="datagrid"><span attr-test-symbol="RHAT" 
onclick="javascript:alert(this)">RHAT</span></td>
+
+            <td class="datagrid"><span attr-index="4" 
attr-onlyeven="foo">18.2</span></td>
+
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT"; onmouseover='doAlert(this, 
4)'><span>RedHat Systems</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-even">
+            <td class="datagrid"><span attr-test-symbol="YHOO" 
onclick="javascript:alert(this)">YHOO</span></td>
+
+            <td class="datagrid"><span attr-index="5">48.16</span></td>
+
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO"; onmouseover='doAlert(this, 
5)'><span>Yahoo Inc</span></a></td>
+
+        
+</tr>
+    </table>
+
+
+    
+    </td></tr>
+    </p>
+    <table>
+    <tr><td><a 
href="/netuiDRT/databinding/datagrid/basic/index.jsp">Home</a></td></tr>
+    </table>
+    </p>
+  </body>
+
+</html>]]></ses:responseBody>
+         </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
+      </ses:test>
+   </ses:tests>
+   <ses:endDate>23 Jan 2005, 10:49:55.995 AM MST</ses:endDate>
+   <ses:sessionStatus>fail</ses:sessionStatus>
+   <ses:testCount>1</ses:testCount>
+   <ses:passedCount>0</ses:passedCount>
+   <ses:failedCount>1</ses:failedCount>
 </ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridEmptyColumnsTag.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridEmptyColumnsTag.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridEmptyColumnsTag.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridEmptyColumnsTag.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridEmptyColumnsTag.xml
       (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridEmptyColumnsTag.xml
       Sun Jan 23 10:30:25 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridEmptyColumnsTag</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>18 Jan 2005, 06:46:19.890 PM MST</ses:startDate>
+   <ses:startDate>23 Jan 2005, 10:49:56.025 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7da2</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c96</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -95,60 +95,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol</th>
+        <th class="datagrid">Symbol</th>
 
 
-        <th class="datagrid-header-cell">Price</th>
+        <th class="datagrid">Price</th>
 
 
-        <th class="datagrid-header-cell">Web</th>
+        <th class="datagrid">Web</th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -183,7 +183,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>18 Jan 2005, 06:46:21.421 PM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:56.055 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFooterTest.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFooterTest.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFooterTest.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFooterTest.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFooterTest.xml
    (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFooterTest.xml
    Sun Jan 23 10:30:25 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridFooterTest</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>18 Jan 2005, 06:46:21.468 PM MST</ses:startDate>
+   <ses:startDate>23 Jan 2005, 10:49:56.615 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7da0</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c94</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -95,60 +95,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol</th>
+        <th class="datagrid">Symbol</th>
 
 
-        <th class="datagrid-header-cell">Price</th>
+        <th class="datagrid">Price</th>
 
 
-        <th class="datagrid-header-cell">Web</th>
+        <th class="datagrid">Web</th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -183,7 +183,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>18 Jan 2005, 06:46:22.656 PM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:56.676 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFormatTest.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFormatTest.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFormatTest.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFormatTest.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFormatTest.xml
    (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridFormatTest.xml
    Sun Jan 23 10:30:25 2005
@@ -2,8 +2,8 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridFormatTest</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>22 Jan 2005, 02:54:29.978 PM MST</ses:startDate>
-   <ses:description>Simple test of applying a currency formatter to a numeric 
column.</ses:description>
+   <ses:startDate>23 Jan 2005, 10:49:56.706 AM MST</ses:startDate>
+   <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
          <ses:testNumber>1</ses:testNumber>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>EB55A1EC64F6C9EE1936095B8240BDC4</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=EB55A1EC64F6C9EE1936095B8240BDC4</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -55,6 +55,10 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c92</ses:value>
+               </ses:header>
+               <ses:header>
                   <ses:name>user-agent</ses:name>
                   <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
                </ses:header>
@@ -74,7 +78,7 @@
   <base 
href="http://localhost:8080/coreWeb/databinding/datagrid/misc/formatTest.jsp";>
   <body>
     <p>
-    <b>Basic Data Grid</b>
+    <b>Format Test</b>
     <table width="100%">
     <tr><td></td></tr>
     <tr><td>
@@ -92,7 +96,7 @@
 <caption>
         
         
-            Customers
+            Stocks
         
         
         
@@ -103,47 +107,47 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>||| <<< BEAS >>> 
|||</span></td>
+            <td class="datagrid"><span>||| <<< BEAS >>> |||</span></td>
 
-            <td class="datagrid-data-cell"><span>$14.35</span></td>
+            <td class="datagrid"><span>$14.35</span></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>||| <<< CSCO >>> 
|||</span></td>
+            <td class="datagrid"><span>||| <<< CSCO >>> |||</span></td>
 
-            <td class="datagrid-data-cell"><span>$19.42</span></td>
+            <td class="datagrid"><span>$19.42</span></td>
 
         
 </tr>
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>||| <<< GE >>> |||</span></td>
+            <td class="datagrid"><span>||| <<< GE >>> |||</span></td>
 
-            <td class="datagrid-data-cell"><span>$59.42</span></td>
+            <td class="datagrid"><span>$59.42</span></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>||| <<< RHAT >>> 
|||</span></td>
+            <td class="datagrid"><span>||| <<< RHAT >>> |||</span></td>
 
-            <td class="datagrid-data-cell"><span>$18.20</span></td>
+            <td class="datagrid"><span>$18.20</span></td>
 
         
 </tr>
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>||| <<< YHOO >>> 
|||</span></td>
+            <td class="datagrid"><span>||| <<< YHOO >>> |||</span></td>
 
-            <td class="datagrid-data-cell"><span>$48.16</span></td>
+            <td class="datagrid"><span>$48.16</span></td>
 
         
 </tr>
@@ -173,8 +177,14 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>22 Jan 2005, 02:54:35.666 PM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:56.746 AM MST</ses:endDate>
+   <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
+   <ses:passedCount>0</ses:passedCount>
+   <ses:failedCount>1</ses:failedCount>
 </ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderTest.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderTest.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderTest.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderTest.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderTest.xml
    (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridHeaderTest.xml
    Sun Jan 23 10:30:25 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridHeaderTest</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>18 Jan 2005, 06:46:22.703 PM MST</ses:startDate>
+   <ses:startDate>23 Jan 2005, 10:49:56.886 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7d9e</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c90</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -95,17 +95,17 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">
+        <th class="datagrid">
             
                 <a 
href="/coreWeb/databinding/datagrid/header/index.jsp">Symbol Anchor</a>
             
         </th>
 
 
-        <th class="datagrid-header-cell">Price</th>
+        <th class="datagrid">Price</th>
 
 
-        <th class="datagrid-header-cell">
+        <th class="datagrid">
             
                 Web URL
             
@@ -117,47 +117,47 @@
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -184,7 +184,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>18 Jan 2005, 06:46:24.078 PM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:56.956 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridJavaScriptSmoke.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridJavaScriptSmoke.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridJavaScriptSmoke.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridJavaScriptSmoke.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridJavaScriptSmoke.xml
       (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridJavaScriptSmoke.xml
       Sun Jan 23 10:30:25 2005
@@ -1,184 +1,184 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
-   <ses:sessionName>DataGridJavaScriptSmoke</ses:sessionName>
-   <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>18 Jan 2005, 06:46:24.125 PM MST</ses:startDate>
-   <ses:description>ekoneil</ses:description>
-   <ses:tests>
-      <ses:test>
-         <ses:testNumber>1</ses:testNumber>
-         <ses:request>
-            <ses:protocol>HTTP</ses:protocol>
-            <ses:protocolVersion>1.1</ses:protocolVersion>
-            <ses:host>localhost</ses:host>
-            <ses:port>8080</ses:port>
-            <ses:uri>/coreWeb/databinding/datagrid/misc/onclick.jsp</ses:uri>
-            <ses:method>GET</ses:method>
-            <ses:parameters/>
-            <ses:cookies>
-               <ses:cookie>
-                  <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
-               </ses:cookie>
-            </ses:cookies>
-            <ses:headers>
-               <ses:header>
-                  <ses:name>---------------</ses:name>
-                  <ses:value>------------</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept</ses:name>
-                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-charset</ses:name>
-                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-language</ses:name>
-                  <ses:value>en-us,en;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>connection</ses:name>
-                  <ses:value>keep-alive</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>host</ses:name>
-                  <ses:value>localhost:8080</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>keep-alive</ses:name>
-                  <ses:value>300</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7d9c</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>user-agent</ses:name>
-                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7) Gecko/20040614 Firefox/0.9</ses:value>
-               </ses:header>
-            </ses:headers>
-         </ses:request>
-         <ses:response>
-            <ses:statusCode>200</ses:statusCode>
-            <ses:reason/>
-            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
-       "http://www.w3.org/TR/html4/loose.dtd";>
-<html lang="en">
-
-  <head>
-    <title>NetUI Data Grid Samples</title>
-    <link rel="stylesheet" 
href="/coreWeb/databinding/datagrid/site/css/default.css" type="text/css"/>
-  </head>
-  <base 
href="http://localhost:8080/coreWeb/databinding/datagrid/misc/onclick.jsp";>
-  <body>
-    <p>
-    <b>Basic Data Grid</b>
-    <table width="100%">
-    <tr><td></td></tr>
-    <tr><td>
-        
-    <script language="javascript">
-function doAlert(node, index)
-{
-  alert("hello from item: " + index);
-}
-    </script>
-    <p>
-    
- 
-
-
-    Page 1 of 1&nbsp;&nbsp;&nbsp;
-<table class="datagrid">
-
-        
-<thead>
-<tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
-
-
-            <th class="datagrid-header-cell">Price</th>
-
-
-            <th class="datagrid-header-cell">Web</th>
-
-
-        
-</tr></thead>
-
-<tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span 
onclick="javascript:alert(this)">BEAS</span></td>
-
-            <td class="datagrid-data-cell"><span>14.35</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS"; onmouseover='doAlert(this, 
1)'><span>BEA Systems</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span 
onclick="javascript:alert(this)">CSCO</span></td>
-
-            <td class="datagrid-data-cell"><span>19.42</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO"; onmouseover='doAlert(this, 
2)'><span>Cisco Systems</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span 
onclick="javascript:alert(this)">GE</span></td>
-
-            <td class="datagrid-data-cell"><span>59.42</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE"; onmouseover='doAlert(this, 
3)'><span>General Electric</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span 
onclick="javascript:alert(this)">RHAT</span></td>
-
-            <td class="datagrid-data-cell"><span>18.2</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT"; onmouseover='doAlert(this, 
4)'><span>RedHat Systems</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span 
onclick="javascript:alert(this)">YHOO</span></td>
-
-            <td class="datagrid-data-cell"><span>48.16</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO"; onmouseover='doAlert(this, 
5)'><span>Yahoo Inc</span></a></td>
-
-        
-</tr>
-    </table>
-
-
-    
-    </td></tr>
-    </p>
-    <table>
-    <tr><td><a 
href="/netuiDRT/databinding/datagrid/basic/index.jsp">Home</a></td></tr>
-    </table>
-    </p>
-  </body>
-
-</html>]]></ses:responseBody>
-         </ses:response>
-         <ses:testResults>
-            <ses:testStatus>fail</ses:testStatus>
-         </ses:testResults>
-      </ses:test>
-   </ses:tests>
-   <ses:endDate>18 Jan 2005, 06:46:25.625 PM MST</ses:endDate>
-   <ses:sessionStatus>fail</ses:sessionStatus>
-   <ses:testCount>1</ses:testCount>
-   <ses:passedCount>0</ses:passedCount>
-   <ses:failedCount>1</ses:failedCount>
+<?xml version="1.0" encoding="UTF-8"?>
+<ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
+   <ses:sessionName>DataGridJavaScriptSmoke</ses:sessionName>
+   <ses:tester>ekoneil</ses:tester>
+   <ses:startDate>23 Jan 2005, 10:49:57.006 AM MST</ses:startDate>
+   <ses:description>ekoneil</ses:description>
+   <ses:tests>
+      <ses:test>
+         <ses:testNumber>1</ses:testNumber>
+         <ses:request>
+            <ses:protocol>HTTP</ses:protocol>
+            <ses:protocolVersion>1.1</ses:protocolVersion>
+            <ses:host>localhost</ses:host>
+            <ses:port>8080</ses:port>
+            <ses:uri>/coreWeb/databinding/datagrid/misc/onclick.jsp</ses:uri>
+            <ses:method>GET</ses:method>
+            <ses:parameters/>
+            <ses:cookies>
+               <ses:cookie>
+                  <ses:name>JSESSIONID</ses:name>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
+               </ses:cookie>
+            </ses:cookies>
+            <ses:headers>
+               <ses:header>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>------------</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept</ses:name>
+                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-charset</ses:name>
+                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-language</ses:name>
+                  <ses:value>en-us,en;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>connection</ses:name>
+                  <ses:value>keep-alive</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>cookie</ses:name>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>host</ses:name>
+                  <ses:value>localhost:8080</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>keep-alive</ses:name>
+                  <ses:value>300</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c8e</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>user-agent</ses:name>
+                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7) Gecko/20040614 Firefox/0.9</ses:value>
+               </ses:header>
+            </ses:headers>
+         </ses:request>
+         <ses:response>
+            <ses:statusCode>200</ses:statusCode>
+            <ses:reason/>
+            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
+       "http://www.w3.org/TR/html4/loose.dtd";>
+<html lang="en">
+
+  <head>
+    <title>NetUI Data Grid Samples</title>
+    <link rel="stylesheet" 
href="/coreWeb/databinding/datagrid/site/css/default.css" type="text/css"/>
+  </head>
+  <base 
href="http://localhost:8080/coreWeb/databinding/datagrid/misc/onclick.jsp";>
+  <body>
+    <p>
+    <b>Basic Data Grid</b>
+    <table width="100%">
+    <tr><td></td></tr>
+    <tr><td>
+        
+    <script language="javascript">
+function doAlert(node, index)
+{
+  alert("hello from item: " + index);
+}
+    </script>
+    <p>
+    
+ 
+
+
+    Page 1 of 1&nbsp;&nbsp;&nbsp;
+<table class="datagrid">
+
+        
+<thead>
+<tr class="datagrid-header">
+            <th class="datagrid">Symbol</th>
+
+
+            <th class="datagrid">Price</th>
+
+
+            <th class="datagrid">Web</th>
+
+
+        
+</tr></thead>
+
+<tr class="datagrid-even">
+            <td class="datagrid"><span 
onclick="javascript:alert(this)">BEAS</span></td>
+
+            <td class="datagrid"><span>14.35</span></td>
+
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS"; onmouseover='doAlert(this, 
1)'><span>BEA Systems</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-odd">
+            <td class="datagrid"><span 
onclick="javascript:alert(this)">CSCO</span></td>
+
+            <td class="datagrid"><span>19.42</span></td>
+
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO"; onmouseover='doAlert(this, 
2)'><span>Cisco Systems</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-even">
+            <td class="datagrid"><span 
onclick="javascript:alert(this)">GE</span></td>
+
+            <td class="datagrid"><span>59.42</span></td>
+
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE"; onmouseover='doAlert(this, 
3)'><span>General Electric</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-odd">
+            <td class="datagrid"><span 
onclick="javascript:alert(this)">RHAT</span></td>
+
+            <td class="datagrid"><span>18.2</span></td>
+
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT"; onmouseover='doAlert(this, 
4)'><span>RedHat Systems</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-even">
+            <td class="datagrid"><span 
onclick="javascript:alert(this)">YHOO</span></td>
+
+            <td class="datagrid"><span>48.16</span></td>
+
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO"; onmouseover='doAlert(this, 
5)'><span>Yahoo Inc</span></a></td>
+
+        
+</tr>
+    </table>
+
+
+    
+    </td></tr>
+    </p>
+    <table>
+    <tr><td><a 
href="/netuiDRT/databinding/datagrid/basic/index.jsp">Home</a></td></tr>
+    </table>
+    </p>
+  </body>
+
+</html>]]></ses:responseBody>
+         </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
+      </ses:test>
+   </ses:tests>
+   <ses:endDate>23 Jan 2005, 10:49:57.036 AM MST</ses:endDate>
+   <ses:sessionStatus>fail</ses:sessionStatus>
+   <ses:testCount>1</ses:testCount>
+   <ses:passedCount>0</ses:passedCount>
+   <ses:failedCount>1</ses:failedCount>
 </ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridModelTest.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridModelTest.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridModelTest.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridModelTest.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridModelTest.xml
     (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridModelTest.xml
     Sun Jan 23 10:30:25 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridModelTest</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>18 Jan 2005, 06:46:25.703 PM MST</ses:startDate>
+   <ses:startDate>23 Jan 2005, 10:49:57.086 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7d9a</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c8c</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -103,60 +103,60 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -213,7 +213,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>18 Jan 2005, 06:46:28.015 PM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:57.166 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridNestedJSTL.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridNestedJSTL.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridNestedJSTL.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridNestedJSTL.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridNestedJSTL.xml
    (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridNestedJSTL.xml
    Sun Jan 23 10:30:25 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridNestedJSTL</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>18 Jan 2005, 06:46:28.093 PM MST</ses:startDate>
+   <ses:startDate>23 Jan 2005, 10:49:57.206 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7d98</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c8a</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -96,14 +96,14 @@
         
 <thead>
 <tr class="datagrid-header">
-          <th class="datagrid-header-cell">Symbol</th>
+          <th class="datagrid">Symbol</th>
 
 
           
             
             
             
-              <th class="datagrid-header-cell">JSTL Column</th>
+              <th class="datagrid">JSTL Column</th>
 
 
             
@@ -112,11 +112,11 @@
 </tr></thead>
 
 <tr class="datagrid-even">
-          <td class="datagrid-data-cell"><span>BEAS</span></td>
+          <td class="datagrid"><span>BEAS</span></td>
 
           
             
-              <td class="datagrid-data-cell"><span>BEA Systems</span></td>
+              <td class="datagrid"><span>BEA Systems</span></td>
 
             
             
@@ -125,12 +125,12 @@
         
 </tr>
 <tr class="datagrid-odd">
-          <td class="datagrid-data-cell"><span>CSCO</span></td>
+          <td class="datagrid"><span>CSCO</span></td>
 
           
             
             
-              <td class="datagrid-data-cell"><span>Cisco</span></td>
+              <td class="datagrid"><span>Cisco</span></td>
 
             
             
@@ -138,39 +138,39 @@
         
 </tr>
 <tr class="datagrid-even">
-          <td class="datagrid-data-cell"><span>GE</span></td>
+          <td class="datagrid"><span>GE</span></td>
 
           
             
             
             
-              <td class="datagrid-data-cell"><span>None</span></td>
+              <td class="datagrid"><span>None</span></td>
 
             
         
         
 </tr>
 <tr class="datagrid-odd">
-          <td class="datagrid-data-cell"><span>RHAT</span></td>
+          <td class="datagrid"><span>RHAT</span></td>
 
           
             
             
             
-              <td class="datagrid-data-cell"><span>None</span></td>
+              <td class="datagrid"><span>None</span></td>
 
             
         
         
 </tr>
 <tr class="datagrid-even">
-          <td class="datagrid-data-cell"><span>YHOO</span></td>
+          <td class="datagrid"><span>YHOO</span></td>
 
           
             
             
             
-              <td class="datagrid-data-cell"><span>None</span></td>
+              <td class="datagrid"><span>None</span></td>
 
             
         
@@ -195,7 +195,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>18 Jan 2005, 06:46:29.859 PM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:57.246 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerBasic.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerBasic.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerBasic.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerBasic.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerBasic.xml
    (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerBasic.xml
    Sun Jan 23 10:30:25 2005
@@ -2,8 +2,8 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridPagerBasic</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>22 Jan 2005, 12:06:07.660 PM MST</ses:startDate>
-   <ses:description>Test of an OOTB pager in a grid.  Page size is 
two.</ses:description>
+   <ses:startDate>23 Jan 2005, 10:49:57.326 AM MST</ses:startDate>
+   <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
          <ses:testNumber>1</ses:testNumber>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -55,6 +55,10 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
+               </ses:header>
+               <ses:header>
                   <ses:name>user-agent</ses:name>
                   <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
                </ses:header>
@@ -92,33 +96,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -140,6 +144,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>2</ses:testNumber>
@@ -159,7 +166,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -185,7 +192,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -196,8 +203,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/Controller.jpf</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -237,33 +244,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -285,6 +292,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>3</ses:testNumber>
@@ -304,7 +314,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -330,7 +340,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -341,8 +351,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do?netui_row=portfolio%7E2</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -382,24 +392,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -421,6 +431,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>4</ses:testNumber>
@@ -435,7 +448,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -461,7 +474,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -472,8 +485,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do?netui_row=portfolio%7E4</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -513,33 +526,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -561,6 +574,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>5</ses:testNumber>
@@ -580,7 +596,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -606,7 +622,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -617,8 +633,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -658,24 +674,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -697,6 +713,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>6</ses:testNumber>
@@ -716,7 +735,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -742,7 +761,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -753,8 +772,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do?netui_row=portfolio%7E4</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -794,33 +813,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -842,6 +861,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>7</ses:testNumber>
@@ -861,7 +883,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -887,7 +909,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -898,8 +920,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do?netui_row=portfolio%7E2</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -939,24 +961,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -978,6 +1000,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>8</ses:testNumber>
@@ -997,7 +1022,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1023,7 +1048,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1034,8 +1059,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do?netui_row=portfolio%7E4</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1075,33 +1100,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1123,6 +1148,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>9</ses:testNumber>
@@ -1137,7 +1165,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1163,7 +1191,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1174,8 +1202,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do?netui_row=portfolio%7E2</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1215,33 +1243,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1263,6 +1291,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>10</ses:testNumber>
@@ -1282,7 +1313,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1308,7 +1339,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1319,8 +1350,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1360,33 +1391,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1408,6 +1439,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>11</ses:testNumber>
@@ -1422,7 +1456,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1448,7 +1482,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1459,8 +1493,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do?netui_row=portfolio%7E2</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1500,33 +1534,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1548,6 +1582,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>12</ses:testNumber>
@@ -1567,7 +1604,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1593,7 +1630,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1604,8 +1641,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1645,24 +1682,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -1684,6 +1721,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>13</ses:testNumber>
@@ -1698,7 +1738,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1724,7 +1764,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1735,8 +1775,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do?netui_row=portfolio%7E4</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1776,33 +1816,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1824,6 +1864,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>14</ses:testNumber>
@@ -1843,7 +1886,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1869,7 +1912,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1880,8 +1923,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1921,33 +1964,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1969,6 +2012,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>15</ses:testNumber>
@@ -1983,7 +2029,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -2009,7 +2055,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -2020,8 +2066,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do?netui_row=portfolio%7E2</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -2061,33 +2107,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -2109,6 +2155,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>16</ses:testNumber>
@@ -2128,7 +2177,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -2154,7 +2203,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -2165,8 +2214,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -2206,24 +2255,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -2245,6 +2294,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>17</ses:testNumber>
@@ -2264,7 +2316,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -2290,7 +2342,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -2301,8 +2353,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do?netui_row=portfolio%7E4</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -2342,33 +2394,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -2390,6 +2442,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>18</ses:testNumber>
@@ -2404,7 +2459,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -2430,7 +2485,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -2441,8 +2496,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/basic/begin.do?netui_row=portfolio%7E2</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c88</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -2482,33 +2537,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -2530,8 +2585,14 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>22 Jan 2005, 12:06:28.000 PM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:57.807 AM MST</ses:endDate>
+   <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>18</ses:testCount>
+   <ses:passedCount>0</ses:passedCount>
+   <ses:failedCount>18</ses:failedCount>
 </ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml
     (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerCustomSelect.xml
     Sun Jan 23 10:30:25 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridPagerCustomSelect</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>19 Jan 2005, 10:37:39.567 AM MST</ses:startDate>
+   <ses:startDate>23 Jan 2005, 10:49:57.907 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5308ED324195E9C7AABEAD1FA6B62636</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=5308ED324195E9C7AABEAD1FA6B62636; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>344944c8:1018c01b7e0:-7c6a</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c75</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -98,33 +98,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -307,7 +307,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5308ED324195E9C7AABEAD1FA6B62636</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -333,7 +333,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=5308ED324195E9C7AABEAD1FA6B62636; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -345,7 +345,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>344944c8:1018c01b7e0:-7c6a</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c75</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -387,24 +387,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -587,7 +587,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5308ED324195E9C7AABEAD1FA6B62636</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -613,7 +613,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=5308ED324195E9C7AABEAD1FA6B62636; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -625,7 +625,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>344944c8:1018c01b7e0:-7c6a</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c75</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -667,33 +667,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -876,7 +876,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5308ED324195E9C7AABEAD1FA6B62636</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -902,7 +902,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=5308ED324195E9C7AABEAD1FA6B62636; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -914,7 +914,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>344944c8:1018c01b7e0:-7c6a</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c75</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -956,24 +956,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -1156,7 +1156,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5308ED324195E9C7AABEAD1FA6B62636</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1182,7 +1182,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=5308ED324195E9C7AABEAD1FA6B62636; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1194,7 +1194,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>344944c8:1018c01b7e0:-7c6a</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c75</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1236,33 +1236,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1445,7 +1445,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5308ED324195E9C7AABEAD1FA6B62636</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1471,7 +1471,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=5308ED324195E9C7AABEAD1FA6B62636; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1483,7 +1483,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>344944c8:1018c01b7e0:-7c6a</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c75</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1525,33 +1525,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1734,7 +1734,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5308ED324195E9C7AABEAD1FA6B62636</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1760,7 +1760,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=5308ED324195E9C7AABEAD1FA6B62636; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1772,7 +1772,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>344944c8:1018c01b7e0:-7c6a</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c75</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1814,24 +1814,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -2014,7 +2014,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5308ED324195E9C7AABEAD1FA6B62636</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -2040,7 +2040,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=5308ED324195E9C7AABEAD1FA6B62636; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -2052,7 +2052,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>344944c8:1018c01b7e0:-7c6a</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c75</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -2094,33 +2094,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -2303,7 +2303,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5308ED324195E9C7AABEAD1FA6B62636</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -2329,7 +2329,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=5308ED324195E9C7AABEAD1FA6B62636; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -2341,7 +2341,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>344944c8:1018c01b7e0:-7c6a</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c75</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -2383,24 +2383,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -2566,7 +2566,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>19 Jan 2005, 10:37:42.293 AM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:58.318 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>9</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerDisable.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerDisable.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerDisable.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerDisable.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerDisable.xml
  (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerDisable.xml
  Sun Jan 23 10:30:25 2005
@@ -2,8 +2,8 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridPagerDisable</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>19 Jan 2005, 10:33:08.967 AM MST</ses:startDate>
-   <ses:description>Test that a disabled and otherwise unconfigured pager can 
still be rendered by the &lt;renderPager> tag.</ses:description>
+   <ses:startDate>23 Jan 2005, 10:49:58.408 AM MST</ses:startDate>
+   <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
          <ses:testNumber>1</ses:testNumber>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>F61C9C7FFEA7B747F5D29A3680EC38C8</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=F61C9C7FFEA7B747F5D29A3680EC38C8</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -55,6 +55,10 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c6b</ses:value>
+               </ses:header>
+               <ses:header>
                   <ses:name>user-agent</ses:name>
                   <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
                </ses:header>
@@ -67,10 +71,19 @@
        "http://www.w3.org/TR/html4/loose.dtd";>
 <html lang="en">
 
-    <head>
-        <title></title>
-    </head>
-    <body>
+  <head>
+    <title>NetUI Data Grid Samples</title>
+    <link rel="stylesheet" 
href="/coreWeb/databinding/datagrid/site/css/default.css" type="text/css"/>
+  </head>
+  <base 
href="http://localhost:8080/coreWeb/databinding/datagrid/misc/disabledPagerNPE.jsp";>
+  <body>
+    <p>
+    <b>Disabled Pager</b>
+    <table width="100%">
+    <tr><td></td></tr>
+    <tr><td>
+        
+    <p>
     
 
 
@@ -83,7 +96,7 @@
 <caption>
         
         
-            Customers
+            Stocks
         
         
         
@@ -94,47 +107,47 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
         
 </tr>
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
         
 </tr>
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
         
 </tr>
@@ -145,18 +158,33 @@
         
         
         
-            Page 1 of 1&nbsp;&nbsp;&nbsp;
+            <td colspan="2" align="right">Page 1 of 1&nbsp;&nbsp;&nbsp;</td>
         
     
 </tr></table>
 
 
+    <br/>
+    </p>
+    
+    </td></tr>
+    </p>
+    <table>
+    <tr><td><a 
href="/netuiDRT/databinding/datagrid/basic/index.jsp">Home</a></td></tr>
+    </table>
+    </p>
   </body>
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>19 Jan 2005, 10:33:14.224 AM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:58.468 AM MST</ses:endDate>
+   <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
+   <ses:passedCount>0</ses:passedCount>
+   <ses:failedCount>1</ses:failedCount>
 </ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerEmpty.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerEmpty.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerEmpty.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerEmpty.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerEmpty.xml
    (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerEmpty.xml
    Sun Jan 23 10:30:25 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridPagerEmpty</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>18 Jan 2005, 06:46:35.234 PM MST</ses:startDate>
+   <ses:startDate>23 Jan 2005, 10:49:58.518 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7d7f</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c69</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -93,13 +93,13 @@
           
 <thead>
 <tr class="datagrid-header">
-              <th class="datagrid-header-cell">Symbol</th>
+              <th class="datagrid">Symbol</th>
 
 
-              <th class="datagrid-header-cell">Price</th>
+              <th class="datagrid">Price</th>
 
 
-              <th class="datagrid-header-cell">Web</th>
+              <th class="datagrid">Web</th>
 
 
           
@@ -139,7 +139,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>18 Jan 2005, 06:46:36.359 PM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:58.558 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml
        (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInCaption.xml
        Sun Jan 23 10:30:25 2005
@@ -2,8 +2,8 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridPagerInCaption</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>22 Jan 2005, 12:07:39.385 PM MST</ses:startDate>
-   <ses:description>Test rendering pager in a grid caption.</ses:description>
+   <ses:startDate>23 Jan 2005, 10:49:58.608 AM MST</ses:startDate>
+   <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
          <ses:testNumber>1</ses:testNumber>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -55,6 +55,10 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c67</ses:value>
+               </ses:header>
+               <ses:header>
                   <ses:name>user-agent</ses:name>
                   <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
                </ses:header>
@@ -103,33 +107,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -151,6 +155,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>2</ses:testNumber>
@@ -170,7 +177,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -196,7 +203,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -207,8 +214,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/incaption/Controller.jpf</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c67</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -259,24 +266,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -298,6 +305,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>3</ses:testNumber>
@@ -312,7 +322,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -338,7 +348,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -349,8 +359,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c67</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -401,33 +411,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -449,6 +459,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>4</ses:testNumber>
@@ -468,7 +481,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -494,7 +507,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -505,8 +518,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/incaption/begin.do</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c67</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -557,33 +570,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -605,6 +618,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>5</ses:testNumber>
@@ -624,7 +640,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -650,7 +666,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -661,8 +677,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E2</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c67</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -713,24 +729,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -752,6 +768,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>6</ses:testNumber>
@@ -766,7 +785,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -792,7 +811,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -803,8 +822,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c67</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -855,33 +874,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -903,6 +922,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>7</ses:testNumber>
@@ -922,7 +944,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -948,7 +970,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -959,8 +981,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/incaption/begin.do</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c67</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1011,24 +1033,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -1050,6 +1072,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>8</ses:testNumber>
@@ -1069,7 +1094,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1095,7 +1120,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1106,8 +1131,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c67</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1158,33 +1183,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1206,6 +1231,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>9</ses:testNumber>
@@ -1220,7 +1248,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1246,7 +1274,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1257,8 +1285,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E2</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c67</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1309,33 +1337,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1357,6 +1385,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>10</ses:testNumber>
@@ -1376,7 +1407,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1402,7 +1433,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1413,8 +1444,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/incaption/begin.do</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c67</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1465,33 +1496,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1513,6 +1544,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>11</ses:testNumber>
@@ -1532,7 +1566,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1558,7 +1592,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1569,8 +1603,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E2</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c67</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1621,24 +1655,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -1660,6 +1694,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>12</ses:testNumber>
@@ -1674,7 +1711,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1700,7 +1737,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1711,8 +1748,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c67</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1763,33 +1800,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1811,6 +1848,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>13</ses:testNumber>
@@ -1830,7 +1870,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1856,7 +1896,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1867,8 +1907,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/incaption/begin.do</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c67</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1919,24 +1959,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -1958,6 +1998,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>14</ses:testNumber>
@@ -1972,7 +2015,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1998,7 +2041,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -2009,8 +2052,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/incaption/begin.do?netui_row=portfolio%7E4</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c67</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -2061,33 +2104,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -2109,8 +2152,14 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>22 Jan 2005, 12:08:02.609 PM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:58.899 AM MST</ses:endDate>
+   <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>14</ses:testCount>
+   <ses:passedCount>0</ses:passedCount>
+   <ses:failedCount>14</ses:failedCount>
 </ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInFooter.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInFooter.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInFooter.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInFooter.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInFooter.xml
 (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerInFooter.xml
 Sun Jan 23 10:30:25 2005
@@ -2,8 +2,8 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridPagerInFooter</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>22 Jan 2005, 12:08:29.057 PM MST</ses:startDate>
-   <ses:description>Test rendering pager in grid footer.</ses:description>
+   <ses:startDate>23 Jan 2005, 10:49:58.969 AM MST</ses:startDate>
+   <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
          <ses:testNumber>1</ses:testNumber>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -55,6 +55,10 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c58</ses:value>
+               </ses:header>
+               <ses:header>
                   <ses:name>user-agent</ses:name>
                   <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
                </ses:header>
@@ -92,33 +96,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -151,6 +155,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>2</ses:testNumber>
@@ -170,7 +177,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -196,7 +203,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -207,8 +214,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/infooter/Controller.jpf</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c58</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -248,24 +255,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -298,6 +305,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>3</ses:testNumber>
@@ -312,7 +322,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -338,7 +348,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -349,8 +359,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/infooter/begin.do?netui_row=portfolio%7E4</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c58</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -390,33 +400,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -449,6 +459,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>4</ses:testNumber>
@@ -468,7 +481,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -494,7 +507,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -505,8 +518,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/infooter/begin.do</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c58</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -546,33 +559,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -605,6 +618,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>5</ses:testNumber>
@@ -624,7 +640,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -650,7 +666,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -661,8 +677,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/infooter/begin.do?netui_row=portfolio%7E2</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c58</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -702,24 +718,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -752,6 +768,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>6</ses:testNumber>
@@ -771,7 +790,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -797,7 +816,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -808,8 +827,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/infooter/begin.do?netui_row=portfolio%7E4</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c58</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -849,33 +868,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -908,6 +927,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>7</ses:testNumber>
@@ -927,7 +949,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -953,7 +975,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -964,8 +986,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/infooter/begin.do?netui_row=portfolio%7E2</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c58</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1005,24 +1027,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -1055,6 +1077,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>8</ses:testNumber>
@@ -1069,7 +1094,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1095,7 +1120,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1106,8 +1131,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/infooter/begin.do?netui_row=portfolio%7E4</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c58</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1147,33 +1172,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1206,6 +1231,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>9</ses:testNumber>
@@ -1225,7 +1253,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1251,7 +1279,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1262,8 +1290,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/infooter/begin.do</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c58</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1303,33 +1331,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
+            <td class="datagrid"><span>GE</span></td>
 
-            <td class="datagrid-data-cell"><span>59.42</span></td>
+            <td class="datagrid"><span>59.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
+            <td class="datagrid"><span>RHAT</span></td>
 
-            <td class="datagrid-data-cell"><span>18.2</span></td>
+            <td class="datagrid"><span>18.2</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
         
 </tr>
@@ -1362,6 +1390,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>10</ses:testNumber>
@@ -1381,7 +1412,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1407,7 +1438,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1418,8 +1449,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/infooter/begin.do?netui_row=portfolio%7E2</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c58</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1459,24 +1490,24 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
+            <td class="datagrid"><span>YHOO</span></td>
 
-            <td class="datagrid-data-cell"><span>48.16</span></td>
+            <td class="datagrid"><span>48.16</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
         
 </tr>
@@ -1509,6 +1540,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>11</ses:testNumber>
@@ -1523,7 +1557,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1549,7 +1583,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=5CE37B0457729512628A5A2D87D3E092</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1560,8 +1594,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/pager/infooter/begin.do?netui_row=portfolio%7E4</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c58</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1601,33 +1635,33 @@
         
 <thead>
 <tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
+            <th class="datagrid">Symbol</th>
 
 
-            <th class="datagrid-header-cell">Price</th>
+            <th class="datagrid">Price</th>
 
 
-            <th class="datagrid-header-cell">Web</th>
+            <th class="datagrid">Web</th>
 
 
         
 </tr></thead>
 
 <tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
+            <td class="datagrid"><span>BEAS</span></td>
 
-            <td class="datagrid-data-cell"><span>14.35</span></td>
+            <td class="datagrid"><span>14.35</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
         
 </tr>
 <tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
+            <td class="datagrid"><span>CSCO</span></td>
 
-            <td class="datagrid-data-cell"><span>19.42</span></td>
+            <td class="datagrid"><span>19.42</span></td>
 
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
         
 </tr>
@@ -1660,8 +1694,14 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>22 Jan 2005, 12:08:42.908 PM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:59.209 AM MST</ses:endDate>
+   <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>11</ses:testCount>
+   <ses:passedCount>0</ses:passedCount>
+   <ses:failedCount>11</ses:failedCount>
 </ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerStickyParam.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerStickyParam.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerStickyParam.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerStickyParam.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerStickyParam.xml
      (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridPagerStickyParam.xml
      Sun Jan 23 10:30:25 2005
@@ -1,1081 +1,1081 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
-   <ses:sessionName>DataGridPagerStickyParam</ses:sessionName>
-   <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>18 Jan 2005, 06:46:40.156 PM MST</ses:startDate>
-   <ses:description>ekoneil</ses:description>
-   <ses:tests>
-      <ses:test>
-         <ses:testNumber>1</ses:testNumber>
-         <ses:request>
-            <ses:protocol>HTTP</ses:protocol>
-            <ses:protocolVersion>1.1</ses:protocolVersion>
-            <ses:host>localhost</ses:host>
-            <ses:port>8080</ses:port>
-            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
-            <ses:method>GET</ses:method>
-            <ses:parameters>
-               <ses:parameter>
-                  <ses:name>foo</ses:name>
-                  <ses:value>bar</ses:value>
-               </ses:parameter>
-            </ses:parameters>
-            <ses:cookies>
-               <ses:cookie>
-                  <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
-               </ses:cookie>
-            </ses:cookies>
-            <ses:headers>
-               <ses:header>
-                  <ses:name>---------------</ses:name>
-                  <ses:value>------------</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept</ses:name>
-                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-charset</ses:name>
-                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-language</ses:name>
-                  <ses:value>en-us,en;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>connection</ses:name>
-                  <ses:value>keep-alive</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>host</ses:name>
-                  <ses:value>localhost:8080</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>keep-alive</ses:name>
-                  <ses:value>300</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7d68</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>user-agent</ses:name>
-                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
-               </ses:header>
-            </ses:headers>
-         </ses:request>
-         <ses:response>
-            <ses:statusCode>200</ses:statusCode>
-            <ses:reason/>
-            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
-       "http://www.w3.org/TR/html4/loose.dtd";>
-<html lang="en">
-
-  <head>
-    <title>Sticky URL Param in Pager Test</title>
-  </head>
-  <body>
-    <p>
-    
-
-
-
-
-
-    <br/>
-    Page 1 of 3&nbsp;&nbsp;Previous&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E2">Next</a>
-<table class="datagrid">
-
-        
-        
-<thead>
-<tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
-
-
-            <th class="datagrid-header-cell">Price</th>
-
-
-            <th class="datagrid-header-cell">Web</th>
-
-
-        
-</tr></thead>
-
-<tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
-
-            <td class="datagrid-data-cell"><span>14.35</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
-
-            <td class="datagrid-data-cell"><span>19.42</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
-
-        
-</tr>
-    </table>
-
-
-    </p>
-  </body>
-
-</html>]]></ses:responseBody>
-         </ses:response>
-         <ses:testResults>
-            <ses:testStatus>fail</ses:testStatus>
-         </ses:testResults>
-      </ses:test>
-      <ses:test>
-         <ses:testNumber>2</ses:testNumber>
-         <ses:request>
-            <ses:protocol>HTTP</ses:protocol>
-            <ses:protocolVersion>1.1</ses:protocolVersion>
-            <ses:host>localhost</ses:host>
-            <ses:port>8080</ses:port>
-            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
-            <ses:method>GET</ses:method>
-            <ses:parameters>
-               <ses:parameter>
-                  <ses:name>foo</ses:name>
-                  <ses:value>bar</ses:value>
-               </ses:parameter>
-               <ses:parameter>
-                  <ses:name>netui_row</ses:name>
-                  <ses:value>portfolio~2</ses:value>
-               </ses:parameter>
-            </ses:parameters>
-            <ses:cookies>
-               <ses:cookie>
-                  <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
-               </ses:cookie>
-            </ses:cookies>
-            <ses:headers>
-               <ses:header>
-                  <ses:name>---------------</ses:name>
-                  <ses:value>------------</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept</ses:name>
-                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-charset</ses:name>
-                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-language</ses:name>
-                  <ses:value>en-us,en;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>connection</ses:name>
-                  <ses:value>keep-alive</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>host</ses:name>
-                  <ses:value>localhost:8080</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>keep-alive</ses:name>
-                  <ses:value>300</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7d68</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>user-agent</ses:name>
-                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
-               </ses:header>
-            </ses:headers>
-         </ses:request>
-         <ses:response>
-            <ses:statusCode>200</ses:statusCode>
-            <ses:reason/>
-            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
-       "http://www.w3.org/TR/html4/loose.dtd";>
-<html lang="en">
-
-  <head>
-    <title>Sticky URL Param in Pager Test</title>
-  </head>
-  <body>
-    <p>
-    
-
-
-
-
-
-    <br/>
-    Page 2 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar">Previous</a>&nbsp;<a
 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E4">Next</a>
-<table class="datagrid">
-
-        
-        
-<thead>
-<tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
-
-
-            <th class="datagrid-header-cell">Price</th>
-
-
-            <th class="datagrid-header-cell">Web</th>
-
-
-        
-</tr></thead>
-
-<tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
-
-            <td class="datagrid-data-cell"><span>59.42</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
-
-            <td class="datagrid-data-cell"><span>18.2</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
-
-        
-</tr>
-    </table>
-
-
-    </p>
-  </body>
-
-</html>]]></ses:responseBody>
-         </ses:response>
-         <ses:testResults>
-            <ses:testStatus>fail</ses:testStatus>
-         </ses:testResults>
-      </ses:test>
-      <ses:test>
-         <ses:testNumber>3</ses:testNumber>
-         <ses:request>
-            <ses:protocol>HTTP</ses:protocol>
-            <ses:protocolVersion>1.1</ses:protocolVersion>
-            <ses:host>localhost</ses:host>
-            <ses:port>8080</ses:port>
-            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
-            <ses:method>GET</ses:method>
-            <ses:parameters>
-               <ses:parameter>
-                  <ses:name>foo</ses:name>
-                  <ses:value>bar</ses:value>
-               </ses:parameter>
-               <ses:parameter>
-                  <ses:name>netui_row</ses:name>
-                  <ses:value>portfolio~4</ses:value>
-               </ses:parameter>
-            </ses:parameters>
-            <ses:cookies>
-               <ses:cookie>
-                  <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
-               </ses:cookie>
-            </ses:cookies>
-            <ses:headers>
-               <ses:header>
-                  <ses:name>---------------</ses:name>
-                  <ses:value>------------</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept</ses:name>
-                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-charset</ses:name>
-                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-language</ses:name>
-                  <ses:value>en-us,en;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>connection</ses:name>
-                  <ses:value>keep-alive</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>host</ses:name>
-                  <ses:value>localhost:8080</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>keep-alive</ses:name>
-                  <ses:value>300</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7d68</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>user-agent</ses:name>
-                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
-               </ses:header>
-            </ses:headers>
-         </ses:request>
-         <ses:response>
-            <ses:statusCode>200</ses:statusCode>
-            <ses:reason/>
-            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
-       "http://www.w3.org/TR/html4/loose.dtd";>
-<html lang="en">
-
-  <head>
-    <title>Sticky URL Param in Pager Test</title>
-  </head>
-  <body>
-    <p>
-    
-
-
-
-
-
-    <br/>
-    Page 3 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E2">Previous</a>&nbsp;Next
-<table class="datagrid">
-
-        
-        
-<thead>
-<tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
-
-
-            <th class="datagrid-header-cell">Price</th>
-
-
-            <th class="datagrid-header-cell">Web</th>
-
-
-        
-</tr></thead>
-
-<tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>YHOO</span></td>
-
-            <td class="datagrid-data-cell"><span>48.16</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
-
-        
-</tr>
-    </table>
-
-
-    </p>
-  </body>
-
-</html>]]></ses:responseBody>
-         </ses:response>
-         <ses:testResults>
-            <ses:testStatus>fail</ses:testStatus>
-         </ses:testResults>
-      </ses:test>
-      <ses:test>
-         <ses:testNumber>4</ses:testNumber>
-         <ses:request>
-            <ses:protocol>HTTP</ses:protocol>
-            <ses:protocolVersion>1.1</ses:protocolVersion>
-            <ses:host>localhost</ses:host>
-            <ses:port>8080</ses:port>
-            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
-            <ses:method>GET</ses:method>
-            <ses:parameters>
-               <ses:parameter>
-                  <ses:name>foo</ses:name>
-                  <ses:value>bar</ses:value>
-               </ses:parameter>
-               <ses:parameter>
-                  <ses:name>netui_row</ses:name>
-                  <ses:value>portfolio~2</ses:value>
-               </ses:parameter>
-            </ses:parameters>
-            <ses:cookies>
-               <ses:cookie>
-                  <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
-               </ses:cookie>
-            </ses:cookies>
-            <ses:headers>
-               <ses:header>
-                  <ses:name>---------------</ses:name>
-                  <ses:value>------------</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept</ses:name>
-                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-charset</ses:name>
-                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-language</ses:name>
-                  <ses:value>en-us,en;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>connection</ses:name>
-                  <ses:value>keep-alive</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>host</ses:name>
-                  <ses:value>localhost:8080</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>keep-alive</ses:name>
-                  <ses:value>300</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7d68</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>user-agent</ses:name>
-                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
-               </ses:header>
-            </ses:headers>
-         </ses:request>
-         <ses:response>
-            <ses:statusCode>200</ses:statusCode>
-            <ses:reason/>
-            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
-       "http://www.w3.org/TR/html4/loose.dtd";>
-<html lang="en">
-
-  <head>
-    <title>Sticky URL Param in Pager Test</title>
-  </head>
-  <body>
-    <p>
-    
-
-
-
-
-
-    <br/>
-    Page 2 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar">Previous</a>&nbsp;<a
 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E4">Next</a>
-<table class="datagrid">
-
-        
-        
-<thead>
-<tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
-
-
-            <th class="datagrid-header-cell">Price</th>
-
-
-            <th class="datagrid-header-cell">Web</th>
-
-
-        
-</tr></thead>
-
-<tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
-
-            <td class="datagrid-data-cell"><span>59.42</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
-
-            <td class="datagrid-data-cell"><span>18.2</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
-
-        
-</tr>
-    </table>
-
-
-    </p>
-  </body>
-
-</html>]]></ses:responseBody>
-         </ses:response>
-         <ses:testResults>
-            <ses:testStatus>fail</ses:testStatus>
-         </ses:testResults>
-      </ses:test>
-      <ses:test>
-         <ses:testNumber>5</ses:testNumber>
-         <ses:request>
-            <ses:protocol>HTTP</ses:protocol>
-            <ses:protocolVersion>1.1</ses:protocolVersion>
-            <ses:host>localhost</ses:host>
-            <ses:port>8080</ses:port>
-            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
-            <ses:method>GET</ses:method>
-            <ses:parameters>
-               <ses:parameter>
-                  <ses:name>foo</ses:name>
-                  <ses:value>bar</ses:value>
-               </ses:parameter>
-            </ses:parameters>
-            <ses:cookies>
-               <ses:cookie>
-                  <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
-               </ses:cookie>
-            </ses:cookies>
-            <ses:headers>
-               <ses:header>
-                  <ses:name>---------------</ses:name>
-                  <ses:value>------------</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept</ses:name>
-                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-charset</ses:name>
-                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-language</ses:name>
-                  <ses:value>en-us,en;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>connection</ses:name>
-                  <ses:value>keep-alive</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>host</ses:name>
-                  <ses:value>localhost:8080</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>keep-alive</ses:name>
-                  <ses:value>300</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7d68</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>user-agent</ses:name>
-                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
-               </ses:header>
-            </ses:headers>
-         </ses:request>
-         <ses:response>
-            <ses:statusCode>200</ses:statusCode>
-            <ses:reason/>
-            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
-       "http://www.w3.org/TR/html4/loose.dtd";>
-<html lang="en">
-
-  <head>
-    <title>Sticky URL Param in Pager Test</title>
-  </head>
-  <body>
-    <p>
-    
-
-
-
-
-
-    <br/>
-    Page 1 of 3&nbsp;&nbsp;Previous&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E2">Next</a>
-<table class="datagrid">
-
-        
-        
-<thead>
-<tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
-
-
-            <th class="datagrid-header-cell">Price</th>
-
-
-            <th class="datagrid-header-cell">Web</th>
-
-
-        
-</tr></thead>
-
-<tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
-
-            <td class="datagrid-data-cell"><span>14.35</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
-
-            <td class="datagrid-data-cell"><span>19.42</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
-
-        
-</tr>
-    </table>
-
-
-    </p>
-  </body>
-
-</html>]]></ses:responseBody>
-         </ses:response>
-         <ses:testResults>
-            <ses:testStatus>fail</ses:testStatus>
-         </ses:testResults>
-      </ses:test>
-      <ses:test>
-         <ses:testNumber>6</ses:testNumber>
-         <ses:request>
-            <ses:protocol>HTTP</ses:protocol>
-            <ses:protocolVersion>1.1</ses:protocolVersion>
-            <ses:host>localhost</ses:host>
-            <ses:port>8080</ses:port>
-            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
-            <ses:method>GET</ses:method>
-            <ses:parameters>
-               <ses:parameter>
-                  <ses:name>foo</ses:name>
-                  <ses:value>bar</ses:value>
-               </ses:parameter>
-               <ses:parameter>
-                  <ses:name>netui_row</ses:name>
-                  <ses:value>portfolio~2</ses:value>
-               </ses:parameter>
-            </ses:parameters>
-            <ses:cookies>
-               <ses:cookie>
-                  <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
-               </ses:cookie>
-            </ses:cookies>
-            <ses:headers>
-               <ses:header>
-                  <ses:name>---------------</ses:name>
-                  <ses:value>------------</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept</ses:name>
-                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-charset</ses:name>
-                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-language</ses:name>
-                  <ses:value>en-us,en;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>connection</ses:name>
-                  <ses:value>keep-alive</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>host</ses:name>
-                  <ses:value>localhost:8080</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>keep-alive</ses:name>
-                  <ses:value>300</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7d68</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>user-agent</ses:name>
-                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
-               </ses:header>
-            </ses:headers>
-         </ses:request>
-         <ses:response>
-            <ses:statusCode>200</ses:statusCode>
-            <ses:reason/>
-            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
-       "http://www.w3.org/TR/html4/loose.dtd";>
-<html lang="en">
-
-  <head>
-    <title>Sticky URL Param in Pager Test</title>
-  </head>
-  <body>
-    <p>
-    
-
-
-
-
-
-    <br/>
-    Page 2 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar">Previous</a>&nbsp;<a
 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E4">Next</a>
-<table class="datagrid">
-
-        
-        
-<thead>
-<tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
-
-
-            <th class="datagrid-header-cell">Price</th>
-
-
-            <th class="datagrid-header-cell">Web</th>
-
-
-        
-</tr></thead>
-
-<tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
-
-            <td class="datagrid-data-cell"><span>59.42</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
-
-            <td class="datagrid-data-cell"><span>18.2</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
-
-        
-</tr>
-    </table>
-
-
-    </p>
-  </body>
-
-</html>]]></ses:responseBody>
-         </ses:response>
-         <ses:testResults>
-            <ses:testStatus>fail</ses:testStatus>
-         </ses:testResults>
-      </ses:test>
-      <ses:test>
-         <ses:testNumber>7</ses:testNumber>
-         <ses:request>
-            <ses:protocol>HTTP</ses:protocol>
-            <ses:protocolVersion>1.1</ses:protocolVersion>
-            <ses:host>localhost</ses:host>
-            <ses:port>8080</ses:port>
-            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
-            <ses:method>GET</ses:method>
-            <ses:parameters>
-               <ses:parameter>
-                  <ses:name>foo</ses:name>
-                  <ses:value>bar</ses:value>
-               </ses:parameter>
-            </ses:parameters>
-            <ses:cookies>
-               <ses:cookie>
-                  <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
-               </ses:cookie>
-            </ses:cookies>
-            <ses:headers>
-               <ses:header>
-                  <ses:name>---------------</ses:name>
-                  <ses:value>------------</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept</ses:name>
-                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-charset</ses:name>
-                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-language</ses:name>
-                  <ses:value>en-us,en;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>connection</ses:name>
-                  <ses:value>keep-alive</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>host</ses:name>
-                  <ses:value>localhost:8080</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>keep-alive</ses:name>
-                  <ses:value>300</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7d68</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>user-agent</ses:name>
-                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
-               </ses:header>
-            </ses:headers>
-         </ses:request>
-         <ses:response>
-            <ses:statusCode>200</ses:statusCode>
-            <ses:reason/>
-            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
-       "http://www.w3.org/TR/html4/loose.dtd";>
-<html lang="en">
-
-  <head>
-    <title>Sticky URL Param in Pager Test</title>
-  </head>
-  <body>
-    <p>
-    
-
-
-
-
-
-    <br/>
-    Page 1 of 3&nbsp;&nbsp;Previous&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E2">Next</a>
-<table class="datagrid">
-
-        
-        
-<thead>
-<tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
-
-
-            <th class="datagrid-header-cell">Price</th>
-
-
-            <th class="datagrid-header-cell">Web</th>
-
-
-        
-</tr></thead>
-
-<tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>BEAS</span></td>
-
-            <td class="datagrid-data-cell"><span>14.35</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>CSCO</span></td>
-
-            <td class="datagrid-data-cell"><span>19.42</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
-
-        
-</tr>
-    </table>
-
-
-    </p>
-  </body>
-
-</html>]]></ses:responseBody>
-         </ses:response>
-         <ses:testResults>
-            <ses:testStatus>fail</ses:testStatus>
-         </ses:testResults>
-      </ses:test>
-      <ses:test>
-         <ses:testNumber>8</ses:testNumber>
-         <ses:request>
-            <ses:protocol>HTTP</ses:protocol>
-            <ses:protocolVersion>1.1</ses:protocolVersion>
-            <ses:host>localhost</ses:host>
-            <ses:port>8080</ses:port>
-            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
-            <ses:method>GET</ses:method>
-            <ses:parameters>
-               <ses:parameter>
-                  <ses:name>foo</ses:name>
-                  <ses:value>bar</ses:value>
-               </ses:parameter>
-               <ses:parameter>
-                  <ses:name>netui_row</ses:name>
-                  <ses:value>portfolio~2</ses:value>
-               </ses:parameter>
-            </ses:parameters>
-            <ses:cookies>
-               <ses:cookie>
-                  <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
-               </ses:cookie>
-            </ses:cookies>
-            <ses:headers>
-               <ses:header>
-                  <ses:name>---------------</ses:name>
-                  <ses:value>------------</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept</ses:name>
-                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-charset</ses:name>
-                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>accept-language</ses:name>
-                  <ses:value>en-us,en;q=0.5</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>connection</ses:name>
-                  <ses:value>keep-alive</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>host</ses:name>
-                  <ses:value>localhost:8080</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>keep-alive</ses:name>
-                  <ses:value>300</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7d68</ses:value>
-               </ses:header>
-               <ses:header>
-                  <ses:name>user-agent</ses:name>
-                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
-               </ses:header>
-            </ses:headers>
-         </ses:request>
-         <ses:response>
-            <ses:statusCode>200</ses:statusCode>
-            <ses:reason/>
-            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
-       "http://www.w3.org/TR/html4/loose.dtd";>
-<html lang="en">
-
-  <head>
-    <title>Sticky URL Param in Pager Test</title>
-  </head>
-  <body>
-    <p>
-    
-
-
-
-
-
-    <br/>
-    Page 2 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar">Previous</a>&nbsp;<a
 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E4">Next</a>
-<table class="datagrid">
-
-        
-        
-<thead>
-<tr class="datagrid-header">
-            <th class="datagrid-header-cell">Symbol</th>
-
-
-            <th class="datagrid-header-cell">Price</th>
-
-
-            <th class="datagrid-header-cell">Web</th>
-
-
-        
-</tr></thead>
-
-<tr class="datagrid-even">
-            <td class="datagrid-data-cell"><span>GE</span></td>
-
-            <td class="datagrid-data-cell"><span>59.42</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
-
-        
-</tr>
-<tr class="datagrid-odd">
-            <td class="datagrid-data-cell"><span>RHAT</span></td>
-
-            <td class="datagrid-data-cell"><span>18.2</span></td>
-
-            <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
-
-        
-</tr>
-    </table>
-
-
-    </p>
-  </body>
-
-</html>]]></ses:responseBody>
-         </ses:response>
-         <ses:testResults>
-            <ses:testStatus>fail</ses:testStatus>
-         </ses:testResults>
-      </ses:test>
-   </ses:tests>
-   <ses:endDate>18 Jan 2005, 06:46:41.890 PM MST</ses:endDate>
-   <ses:sessionStatus>fail</ses:sessionStatus>
-   <ses:testCount>8</ses:testCount>
-   <ses:passedCount>0</ses:passedCount>
-   <ses:failedCount>8</ses:failedCount>
+<?xml version="1.0" encoding="UTF-8"?>
+<ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
+   <ses:sessionName>DataGridPagerStickyParam</ses:sessionName>
+   <ses:tester>ekoneil</ses:tester>
+   <ses:startDate>23 Jan 2005, 10:49:59.259 AM MST</ses:startDate>
+   <ses:description>ekoneil</ses:description>
+   <ses:tests>
+      <ses:test>
+         <ses:testNumber>1</ses:testNumber>
+         <ses:request>
+            <ses:protocol>HTTP</ses:protocol>
+            <ses:protocolVersion>1.1</ses:protocolVersion>
+            <ses:host>localhost</ses:host>
+            <ses:port>8080</ses:port>
+            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
+            <ses:method>GET</ses:method>
+            <ses:parameters>
+               <ses:parameter>
+                  <ses:name>foo</ses:name>
+                  <ses:value>bar</ses:value>
+               </ses:parameter>
+            </ses:parameters>
+            <ses:cookies>
+               <ses:cookie>
+                  <ses:name>JSESSIONID</ses:name>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
+               </ses:cookie>
+            </ses:cookies>
+            <ses:headers>
+               <ses:header>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>------------</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept</ses:name>
+                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-charset</ses:name>
+                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-language</ses:name>
+                  <ses:value>en-us,en;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>connection</ses:name>
+                  <ses:value>keep-alive</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>cookie</ses:name>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>host</ses:name>
+                  <ses:value>localhost:8080</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>keep-alive</ses:name>
+                  <ses:value>300</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c4c</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>user-agent</ses:name>
+                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
+               </ses:header>
+            </ses:headers>
+         </ses:request>
+         <ses:response>
+            <ses:statusCode>200</ses:statusCode>
+            <ses:reason/>
+            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
+       "http://www.w3.org/TR/html4/loose.dtd";>
+<html lang="en">
+
+  <head>
+    <title>Sticky URL Param in Pager Test</title>
+  </head>
+  <body>
+    <p>
+    
+
+
+
+
+
+    <br/>
+    Page 1 of 3&nbsp;&nbsp;Previous&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E2">Next</a>
+<table class="datagrid">
+
+        
+        
+<thead>
+<tr class="datagrid-header">
+            <th class="datagrid">Symbol</th>
+
+
+            <th class="datagrid">Price</th>
+
+
+            <th class="datagrid">Web</th>
+
+
+        
+</tr></thead>
+
+<tr class="datagrid-even">
+            <td class="datagrid"><span>BEAS</span></td>
+
+            <td class="datagrid"><span>14.35</span></td>
+
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-odd">
+            <td class="datagrid"><span>CSCO</span></td>
+
+            <td class="datagrid"><span>19.42</span></td>
+
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+
+        
+</tr>
+    </table>
+
+
+    </p>
+  </body>
+
+</html>]]></ses:responseBody>
+         </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
+      </ses:test>
+      <ses:test>
+         <ses:testNumber>2</ses:testNumber>
+         <ses:request>
+            <ses:protocol>HTTP</ses:protocol>
+            <ses:protocolVersion>1.1</ses:protocolVersion>
+            <ses:host>localhost</ses:host>
+            <ses:port>8080</ses:port>
+            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
+            <ses:method>GET</ses:method>
+            <ses:parameters>
+               <ses:parameter>
+                  <ses:name>foo</ses:name>
+                  <ses:value>bar</ses:value>
+               </ses:parameter>
+               <ses:parameter>
+                  <ses:name>netui_row</ses:name>
+                  <ses:value>portfolio~2</ses:value>
+               </ses:parameter>
+            </ses:parameters>
+            <ses:cookies>
+               <ses:cookie>
+                  <ses:name>JSESSIONID</ses:name>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
+               </ses:cookie>
+            </ses:cookies>
+            <ses:headers>
+               <ses:header>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>------------</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept</ses:name>
+                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-charset</ses:name>
+                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-language</ses:name>
+                  <ses:value>en-us,en;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>connection</ses:name>
+                  <ses:value>keep-alive</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>cookie</ses:name>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>host</ses:name>
+                  <ses:value>localhost:8080</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>keep-alive</ses:name>
+                  <ses:value>300</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c4c</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>user-agent</ses:name>
+                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
+               </ses:header>
+            </ses:headers>
+         </ses:request>
+         <ses:response>
+            <ses:statusCode>200</ses:statusCode>
+            <ses:reason/>
+            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
+       "http://www.w3.org/TR/html4/loose.dtd";>
+<html lang="en">
+
+  <head>
+    <title>Sticky URL Param in Pager Test</title>
+  </head>
+  <body>
+    <p>
+    
+
+
+
+
+
+    <br/>
+    Page 2 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar">Previous</a>&nbsp;<a
 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E4">Next</a>
+<table class="datagrid">
+
+        
+        
+<thead>
+<tr class="datagrid-header">
+            <th class="datagrid">Symbol</th>
+
+
+            <th class="datagrid">Price</th>
+
+
+            <th class="datagrid">Web</th>
+
+
+        
+</tr></thead>
+
+<tr class="datagrid-even">
+            <td class="datagrid"><span>GE</span></td>
+
+            <td class="datagrid"><span>59.42</span></td>
+
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-odd">
+            <td class="datagrid"><span>RHAT</span></td>
+
+            <td class="datagrid"><span>18.2</span></td>
+
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+
+        
+</tr>
+    </table>
+
+
+    </p>
+  </body>
+
+</html>]]></ses:responseBody>
+         </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
+      </ses:test>
+      <ses:test>
+         <ses:testNumber>3</ses:testNumber>
+         <ses:request>
+            <ses:protocol>HTTP</ses:protocol>
+            <ses:protocolVersion>1.1</ses:protocolVersion>
+            <ses:host>localhost</ses:host>
+            <ses:port>8080</ses:port>
+            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
+            <ses:method>GET</ses:method>
+            <ses:parameters>
+               <ses:parameter>
+                  <ses:name>foo</ses:name>
+                  <ses:value>bar</ses:value>
+               </ses:parameter>
+               <ses:parameter>
+                  <ses:name>netui_row</ses:name>
+                  <ses:value>portfolio~4</ses:value>
+               </ses:parameter>
+            </ses:parameters>
+            <ses:cookies>
+               <ses:cookie>
+                  <ses:name>JSESSIONID</ses:name>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
+               </ses:cookie>
+            </ses:cookies>
+            <ses:headers>
+               <ses:header>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>------------</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept</ses:name>
+                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-charset</ses:name>
+                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-language</ses:name>
+                  <ses:value>en-us,en;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>connection</ses:name>
+                  <ses:value>keep-alive</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>cookie</ses:name>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>host</ses:name>
+                  <ses:value>localhost:8080</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>keep-alive</ses:name>
+                  <ses:value>300</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c4c</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>user-agent</ses:name>
+                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
+               </ses:header>
+            </ses:headers>
+         </ses:request>
+         <ses:response>
+            <ses:statusCode>200</ses:statusCode>
+            <ses:reason/>
+            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
+       "http://www.w3.org/TR/html4/loose.dtd";>
+<html lang="en">
+
+  <head>
+    <title>Sticky URL Param in Pager Test</title>
+  </head>
+  <body>
+    <p>
+    
+
+
+
+
+
+    <br/>
+    Page 3 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E2">Previous</a>&nbsp;Next
+<table class="datagrid">
+
+        
+        
+<thead>
+<tr class="datagrid-header">
+            <th class="datagrid">Symbol</th>
+
+
+            <th class="datagrid">Price</th>
+
+
+            <th class="datagrid">Web</th>
+
+
+        
+</tr></thead>
+
+<tr class="datagrid-even">
+            <td class="datagrid"><span>YHOO</span></td>
+
+            <td class="datagrid"><span>48.16</span></td>
+
+            <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+
+        
+</tr>
+    </table>
+
+
+    </p>
+  </body>
+
+</html>]]></ses:responseBody>
+         </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
+      </ses:test>
+      <ses:test>
+         <ses:testNumber>4</ses:testNumber>
+         <ses:request>
+            <ses:protocol>HTTP</ses:protocol>
+            <ses:protocolVersion>1.1</ses:protocolVersion>
+            <ses:host>localhost</ses:host>
+            <ses:port>8080</ses:port>
+            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
+            <ses:method>GET</ses:method>
+            <ses:parameters>
+               <ses:parameter>
+                  <ses:name>foo</ses:name>
+                  <ses:value>bar</ses:value>
+               </ses:parameter>
+               <ses:parameter>
+                  <ses:name>netui_row</ses:name>
+                  <ses:value>portfolio~2</ses:value>
+               </ses:parameter>
+            </ses:parameters>
+            <ses:cookies>
+               <ses:cookie>
+                  <ses:name>JSESSIONID</ses:name>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
+               </ses:cookie>
+            </ses:cookies>
+            <ses:headers>
+               <ses:header>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>------------</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept</ses:name>
+                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-charset</ses:name>
+                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-language</ses:name>
+                  <ses:value>en-us,en;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>connection</ses:name>
+                  <ses:value>keep-alive</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>cookie</ses:name>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>host</ses:name>
+                  <ses:value>localhost:8080</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>keep-alive</ses:name>
+                  <ses:value>300</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c4c</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>user-agent</ses:name>
+                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
+               </ses:header>
+            </ses:headers>
+         </ses:request>
+         <ses:response>
+            <ses:statusCode>200</ses:statusCode>
+            <ses:reason/>
+            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
+       "http://www.w3.org/TR/html4/loose.dtd";>
+<html lang="en">
+
+  <head>
+    <title>Sticky URL Param in Pager Test</title>
+  </head>
+  <body>
+    <p>
+    
+
+
+
+
+
+    <br/>
+    Page 2 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar">Previous</a>&nbsp;<a
 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E4">Next</a>
+<table class="datagrid">
+
+        
+        
+<thead>
+<tr class="datagrid-header">
+            <th class="datagrid">Symbol</th>
+
+
+            <th class="datagrid">Price</th>
+
+
+            <th class="datagrid">Web</th>
+
+
+        
+</tr></thead>
+
+<tr class="datagrid-even">
+            <td class="datagrid"><span>GE</span></td>
+
+            <td class="datagrid"><span>59.42</span></td>
+
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-odd">
+            <td class="datagrid"><span>RHAT</span></td>
+
+            <td class="datagrid"><span>18.2</span></td>
+
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+
+        
+</tr>
+    </table>
+
+
+    </p>
+  </body>
+
+</html>]]></ses:responseBody>
+         </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
+      </ses:test>
+      <ses:test>
+         <ses:testNumber>5</ses:testNumber>
+         <ses:request>
+            <ses:protocol>HTTP</ses:protocol>
+            <ses:protocolVersion>1.1</ses:protocolVersion>
+            <ses:host>localhost</ses:host>
+            <ses:port>8080</ses:port>
+            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
+            <ses:method>GET</ses:method>
+            <ses:parameters>
+               <ses:parameter>
+                  <ses:name>foo</ses:name>
+                  <ses:value>bar</ses:value>
+               </ses:parameter>
+            </ses:parameters>
+            <ses:cookies>
+               <ses:cookie>
+                  <ses:name>JSESSIONID</ses:name>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
+               </ses:cookie>
+            </ses:cookies>
+            <ses:headers>
+               <ses:header>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>------------</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept</ses:name>
+                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-charset</ses:name>
+                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-language</ses:name>
+                  <ses:value>en-us,en;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>connection</ses:name>
+                  <ses:value>keep-alive</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>cookie</ses:name>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>host</ses:name>
+                  <ses:value>localhost:8080</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>keep-alive</ses:name>
+                  <ses:value>300</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c4c</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>user-agent</ses:name>
+                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
+               </ses:header>
+            </ses:headers>
+         </ses:request>
+         <ses:response>
+            <ses:statusCode>200</ses:statusCode>
+            <ses:reason/>
+            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
+       "http://www.w3.org/TR/html4/loose.dtd";>
+<html lang="en">
+
+  <head>
+    <title>Sticky URL Param in Pager Test</title>
+  </head>
+  <body>
+    <p>
+    
+
+
+
+
+
+    <br/>
+    Page 1 of 3&nbsp;&nbsp;Previous&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E2">Next</a>
+<table class="datagrid">
+
+        
+        
+<thead>
+<tr class="datagrid-header">
+            <th class="datagrid">Symbol</th>
+
+
+            <th class="datagrid">Price</th>
+
+
+            <th class="datagrid">Web</th>
+
+
+        
+</tr></thead>
+
+<tr class="datagrid-even">
+            <td class="datagrid"><span>BEAS</span></td>
+
+            <td class="datagrid"><span>14.35</span></td>
+
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-odd">
+            <td class="datagrid"><span>CSCO</span></td>
+
+            <td class="datagrid"><span>19.42</span></td>
+
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+
+        
+</tr>
+    </table>
+
+
+    </p>
+  </body>
+
+</html>]]></ses:responseBody>
+         </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
+      </ses:test>
+      <ses:test>
+         <ses:testNumber>6</ses:testNumber>
+         <ses:request>
+            <ses:protocol>HTTP</ses:protocol>
+            <ses:protocolVersion>1.1</ses:protocolVersion>
+            <ses:host>localhost</ses:host>
+            <ses:port>8080</ses:port>
+            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
+            <ses:method>GET</ses:method>
+            <ses:parameters>
+               <ses:parameter>
+                  <ses:name>foo</ses:name>
+                  <ses:value>bar</ses:value>
+               </ses:parameter>
+               <ses:parameter>
+                  <ses:name>netui_row</ses:name>
+                  <ses:value>portfolio~2</ses:value>
+               </ses:parameter>
+            </ses:parameters>
+            <ses:cookies>
+               <ses:cookie>
+                  <ses:name>JSESSIONID</ses:name>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
+               </ses:cookie>
+            </ses:cookies>
+            <ses:headers>
+               <ses:header>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>------------</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept</ses:name>
+                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-charset</ses:name>
+                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-language</ses:name>
+                  <ses:value>en-us,en;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>connection</ses:name>
+                  <ses:value>keep-alive</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>cookie</ses:name>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>host</ses:name>
+                  <ses:value>localhost:8080</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>keep-alive</ses:name>
+                  <ses:value>300</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c4c</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>user-agent</ses:name>
+                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
+               </ses:header>
+            </ses:headers>
+         </ses:request>
+         <ses:response>
+            <ses:statusCode>200</ses:statusCode>
+            <ses:reason/>
+            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
+       "http://www.w3.org/TR/html4/loose.dtd";>
+<html lang="en">
+
+  <head>
+    <title>Sticky URL Param in Pager Test</title>
+  </head>
+  <body>
+    <p>
+    
+
+
+
+
+
+    <br/>
+    Page 2 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar">Previous</a>&nbsp;<a
 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E4">Next</a>
+<table class="datagrid">
+
+        
+        
+<thead>
+<tr class="datagrid-header">
+            <th class="datagrid">Symbol</th>
+
+
+            <th class="datagrid">Price</th>
+
+
+            <th class="datagrid">Web</th>
+
+
+        
+</tr></thead>
+
+<tr class="datagrid-even">
+            <td class="datagrid"><span>GE</span></td>
+
+            <td class="datagrid"><span>59.42</span></td>
+
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-odd">
+            <td class="datagrid"><span>RHAT</span></td>
+
+            <td class="datagrid"><span>18.2</span></td>
+
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+
+        
+</tr>
+    </table>
+
+
+    </p>
+  </body>
+
+</html>]]></ses:responseBody>
+         </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
+      </ses:test>
+      <ses:test>
+         <ses:testNumber>7</ses:testNumber>
+         <ses:request>
+            <ses:protocol>HTTP</ses:protocol>
+            <ses:protocolVersion>1.1</ses:protocolVersion>
+            <ses:host>localhost</ses:host>
+            <ses:port>8080</ses:port>
+            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
+            <ses:method>GET</ses:method>
+            <ses:parameters>
+               <ses:parameter>
+                  <ses:name>foo</ses:name>
+                  <ses:value>bar</ses:value>
+               </ses:parameter>
+            </ses:parameters>
+            <ses:cookies>
+               <ses:cookie>
+                  <ses:name>JSESSIONID</ses:name>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
+               </ses:cookie>
+            </ses:cookies>
+            <ses:headers>
+               <ses:header>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>------------</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept</ses:name>
+                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-charset</ses:name>
+                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-language</ses:name>
+                  <ses:value>en-us,en;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>connection</ses:name>
+                  <ses:value>keep-alive</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>cookie</ses:name>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>host</ses:name>
+                  <ses:value>localhost:8080</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>keep-alive</ses:name>
+                  <ses:value>300</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c4c</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>user-agent</ses:name>
+                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
+               </ses:header>
+            </ses:headers>
+         </ses:request>
+         <ses:response>
+            <ses:statusCode>200</ses:statusCode>
+            <ses:reason/>
+            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
+       "http://www.w3.org/TR/html4/loose.dtd";>
+<html lang="en">
+
+  <head>
+    <title>Sticky URL Param in Pager Test</title>
+  </head>
+  <body>
+    <p>
+    
+
+
+
+
+
+    <br/>
+    Page 1 of 3&nbsp;&nbsp;Previous&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E2">Next</a>
+<table class="datagrid">
+
+        
+        
+<thead>
+<tr class="datagrid-header">
+            <th class="datagrid">Symbol</th>
+
+
+            <th class="datagrid">Price</th>
+
+
+            <th class="datagrid">Web</th>
+
+
+        
+</tr></thead>
+
+<tr class="datagrid-even">
+            <td class="datagrid"><span>BEAS</span></td>
+
+            <td class="datagrid"><span>14.35</span></td>
+
+            <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-odd">
+            <td class="datagrid"><span>CSCO</span></td>
+
+            <td class="datagrid"><span>19.42</span></td>
+
+            <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+
+        
+</tr>
+    </table>
+
+
+    </p>
+  </body>
+
+</html>]]></ses:responseBody>
+         </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
+      </ses:test>
+      <ses:test>
+         <ses:testNumber>8</ses:testNumber>
+         <ses:request>
+            <ses:protocol>HTTP</ses:protocol>
+            <ses:protocolVersion>1.1</ses:protocolVersion>
+            <ses:host>localhost</ses:host>
+            <ses:port>8080</ses:port>
+            
<ses:uri>/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp</ses:uri>
+            <ses:method>GET</ses:method>
+            <ses:parameters>
+               <ses:parameter>
+                  <ses:name>foo</ses:name>
+                  <ses:value>bar</ses:value>
+               </ses:parameter>
+               <ses:parameter>
+                  <ses:name>netui_row</ses:name>
+                  <ses:value>portfolio~2</ses:value>
+               </ses:parameter>
+            </ses:parameters>
+            <ses:cookies>
+               <ses:cookie>
+                  <ses:name>JSESSIONID</ses:name>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
+               </ses:cookie>
+            </ses:cookies>
+            <ses:headers>
+               <ses:header>
+                  <ses:name>---------------</ses:name>
+                  <ses:value>------------</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept</ses:name>
+                  
<ses:value>text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-charset</ses:name>
+                  <ses:value>ISO-8859-1,utf-8;q=0.7,*;q=0.7</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>accept-language</ses:name>
+                  <ses:value>en-us,en;q=0.5</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>connection</ses:name>
+                  <ses:value>keep-alive</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>cookie</ses:name>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>host</ses:name>
+                  <ses:value>localhost:8080</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>keep-alive</ses:name>
+                  <ses:value>300</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c4c</ses:value>
+               </ses:header>
+               <ses:header>
+                  <ses:name>user-agent</ses:name>
+                  <ses:value>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; 
rv:1.7.5) Gecko/20041107 Firefox/1.0</ses:value>
+               </ses:header>
+            </ses:headers>
+         </ses:request>
+         <ses:response>
+            <ses:statusCode>200</ses:statusCode>
+            <ses:reason/>
+            <ses:responseBody><![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 
4.01 Transitional//EN"
+       "http://www.w3.org/TR/html4/loose.dtd";>
+<html lang="en">
+
+  <head>
+    <title>Sticky URL Param in Pager Test</title>
+  </head>
+  <body>
+    <p>
+    
+
+
+
+
+
+    <br/>
+    Page 2 of 3&nbsp;&nbsp;<a 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar">Previous</a>&nbsp;<a
 
href="/coreWeb/databinding/datagrid/misc/stickyPagerParam.jsp?foo=bar&netui_row=portfolio%7E4">Next</a>
+<table class="datagrid">
+
+        
+        
+<thead>
+<tr class="datagrid-header">
+            <th class="datagrid">Symbol</th>
+
+
+            <th class="datagrid">Price</th>
+
+
+            <th class="datagrid">Web</th>
+
+
+        
+</tr></thead>
+
+<tr class="datagrid-even">
+            <td class="datagrid"><span>GE</span></td>
+
+            <td class="datagrid"><span>59.42</span></td>
+
+            <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+
+        
+</tr>
+<tr class="datagrid-odd">
+            <td class="datagrid"><span>RHAT</span></td>
+
+            <td class="datagrid"><span>18.2</span></td>
+
+            <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+
+        
+</tr>
+    </table>
+
+
+    </p>
+  </body>
+
+</html>]]></ses:responseBody>
+         </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
+      </ses:test>
+   </ses:tests>
+   <ses:endDate>23 Jan 2005, 10:49:59.379 AM MST</ses:endDate>
+   <ses:sessionStatus>fail</ses:sessionStatus>
+   <ses:testCount>8</ses:testCount>
+   <ses:passedCount>0</ses:passedCount>
+   <ses:failedCount>8</ses:failedCount>
 </ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml
      (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridScriptletTagFile.xml
      Sun Jan 23 10:30:25 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridScriptletTagFile</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>18 Jan 2005, 06:46:41.953 PM MST</ses:startDate>
+   <ses:startDate>23 Jan 2005, 10:49:59.420 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7d5f</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c43</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -108,13 +108,13 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol</th>
+        <th class="datagrid">Symbol</th>
 
 
-        <th class="datagrid-header-cell">Web</th>
+        <th class="datagrid">Web</th>
 
 
-        <th class="datagrid-header-cell">
+        <th class="datagrid">
           
             
 
@@ -129,47 +129,47 @@
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
     
 </tr>
@@ -211,7 +211,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>18 Jan 2005, 06:46:44.296 PM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:59.450 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSimpleSort.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSimpleSort.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSimpleSort.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSimpleSort.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSimpleSort.xml
    (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSimpleSort.xml
    Sun Jan 23 10:30:25 2005
@@ -2,8 +2,8 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridSimpleSort</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>20 Jan 2005, 09:53:15.971 PM MST</ses:startDate>
-   <ses:description>Test the generation of sort enabled URLs for data grid 
columns.</ses:description>
+   <ses:startDate>23 Jan 2005, 10:49:59.500 AM MST</ses:startDate>
+   <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
          <ses:testNumber>1</ses:testNumber>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -48,7 +48,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -59,8 +59,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -99,60 +99,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7Esymbol"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7Esymbol"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Eprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Eprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Eweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Eweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -174,6 +174,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>2</ses:testNumber>
@@ -193,7 +196,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -219,7 +222,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -230,8 +233,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/sort.do</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -270,60 +273,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -345,6 +348,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>3</ses:testNumber>
@@ -364,7 +370,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -390,7 +396,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -401,8 +407,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7Esymbol</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -441,60 +447,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol%2Cprice"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol%2Cprice"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2C-price"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2C-price"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -516,6 +522,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>4</ses:testNumber>
@@ -535,7 +544,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -561,7 +570,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -572,8 +581,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -612,60 +621,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol%2Cprice%2Cweb"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol%2Cprice%2Cweb"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2C-price%2Cweb"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2C-price%2Cweb"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice%2C-web"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice%2C-web"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -687,6 +696,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>5</ses:testNumber>
@@ -706,7 +718,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -732,7 +744,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -743,8 +755,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice%2Cweb</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -783,60 +795,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol%2C-price%2Cweb"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol%2C-price%2Cweb"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cweb"><img
 src="/coreWeb/resources/images/sortup.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cweb"><img
 src="/coreWeb/resources/images/sortup.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2C-price%2C-web"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2C-price%2C-web"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -858,6 +870,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>6</ses:testNumber>
@@ -877,7 +892,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -903,7 +918,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -914,8 +929,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2C-price%2Cweb</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -954,60 +969,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol%2Cweb"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol%2Cweb"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cweb%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cweb%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2C-web"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2C-web"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -1029,6 +1044,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>7</ses:testNumber>
@@ -1048,7 +1066,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1074,7 +1092,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1085,8 +1103,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cweb</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1125,60 +1143,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7Eweb"><img
 src="/coreWeb/resources/images/sortup.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7Eweb"><img
 src="/coreWeb/resources/images/sortup.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2Cweb%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2Cweb%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2C-web"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2C-web"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -1200,6 +1218,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>8</ses:testNumber>
@@ -1219,7 +1240,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1245,7 +1266,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1256,8 +1277,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol%2Cweb</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1296,60 +1317,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-web"><img
 src="/coreWeb/resources/images/sortup.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-web"><img
 src="/coreWeb/resources/images/sortup.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2C-web%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2C-web%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol"><img
 src="/coreWeb/resources/images/sortup.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol"><img
 src="/coreWeb/resources/images/sortup.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -1371,6 +1392,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>9</ses:testNumber>
@@ -1390,7 +1414,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1416,7 +1440,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1427,8 +1451,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2C-web</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1467,60 +1491,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do"><img 
src="/coreWeb/resources/images/sortup.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do"><img 
src="/coreWeb/resources/images/sortup.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -1542,6 +1566,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>10</ses:testNumber>
@@ -1556,7 +1583,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1582,7 +1609,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1593,8 +1620,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1633,60 +1660,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7Esymbol"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7Esymbol"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Eprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Eprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Eweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Eweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -1708,6 +1735,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>11</ses:testNumber>
@@ -1727,7 +1757,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1753,7 +1783,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1764,8 +1794,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/sort.do</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1804,60 +1834,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -1879,6 +1909,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>12</ses:testNumber>
@@ -1898,7 +1931,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -1924,7 +1957,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -1935,8 +1968,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7Esymbol</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -1975,60 +2008,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol%2Cprice"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol%2Cprice"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2C-price"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2C-price"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -2050,6 +2083,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>13</ses:testNumber>
@@ -2069,7 +2105,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -2095,7 +2131,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -2106,8 +2142,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -2146,60 +2182,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol%2C-price"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol%2C-price"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol"><img
 src="/coreWeb/resources/images/sortup.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol"><img
 src="/coreWeb/resources/images/sortup.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2C-price%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2C-price%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -2221,6 +2257,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>14</ses:testNumber>
@@ -2240,7 +2279,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -2266,7 +2305,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -2277,8 +2316,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2C-price</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -2317,60 +2356,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol"><img
 src="/coreWeb/resources/images/sortdown.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -2392,6 +2431,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>15</ses:testNumber>
@@ -2411,7 +2453,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -2437,7 +2479,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -2448,8 +2490,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Esymbol</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -2488,60 +2530,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do"><img 
src="/coreWeb/resources/images/sortup.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do"><img 
src="/coreWeb/resources/images/sortup.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2Cprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7E-symbol%2Cweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -2563,6 +2605,9 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
       <ses:test>
          <ses:testNumber>16</ses:testNumber>
@@ -2577,7 +2622,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -2603,7 +2648,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  
<ses:value>JSESSIONID=4CC9AADAC9B81604F8AE9D723662A31E</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -2614,8 +2659,8 @@
                   <ses:value>300</ses:value>
                </ses:header>
                <ses:header>
-                  <ses:name>referer</ses:name>
-                  
<ses:value>http://localhost:8080/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7E-symbol</ses:value>
+                  <ses:name>testrecorder.playback.testid</ses:name>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c41</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -2654,60 +2699,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7Esymbol"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Symbol&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/sort.do?netui_sort=portfolio%7Esymbol"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Eprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Price&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Eprice"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
-        <th class="datagrid-header-cell">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Eweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
+        <th class="datagrid">Web&nbsp;<a 
href="/coreWeb/databinding/datagrid/simplesort/index.jsp?netui_sort=portfolio%7Eweb"><img
 src="/coreWeb/resources/images/sortable.gif" border="false"></a></th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -2729,8 +2774,14 @@
 
 </html>]]></ses:responseBody>
          </ses:response>
+         <ses:testResults>
+            <ses:testStatus>fail</ses:testStatus>
+         </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>20 Jan 2005, 09:53:53.535 PM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:59.890 AM MST</ses:endDate>
+   <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>16</ses:testCount>
+   <ses:passedCount>0</ses:passedCount>
+   <ses:failedCount>16</ses:failedCount>
 </ses:recorderSession>

Modified: 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSmokeTest.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSmokeTest.xml?view=diff&rev=126236&p1=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSmokeTest.xml&r1=126235&p2=incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSmokeTest.xml&r2=126236
==============================================================================
--- 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSmokeTest.xml
     (original)
+++ 
incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/tests/DataGridSmokeTest.xml
     Sun Jan 23 10:30:25 2005
@@ -2,7 +2,7 @@
 <ses:recorderSession 
xmlns:ses="http://beehive.apache.org/netui/tools/testrecorder/2004/session";>
    <ses:sessionName>DataGridSmokeTest</ses:sessionName>
    <ses:tester>ekoneil</ses:tester>
-   <ses:startDate>18 Jan 2005, 06:46:10.171 PM MST</ses:startDate>
+   <ses:startDate>23 Jan 2005, 10:49:59.960 AM MST</ses:startDate>
    <ses:description>ekoneil</ses:description>
    <ses:tests>
       <ses:test>
@@ -18,7 +18,7 @@
             <ses:cookies>
                <ses:cookie>
                   <ses:name>JSESSIONID</ses:name>
-                  <ses:value>401BA83031A94CBDA416B26EB0A88FB5</ses:value>
+                  <ses:value>BA23A555F01039F7E0B07DDD89D13EA0</ses:value>
                </ses:cookie>
             </ses:cookies>
             <ses:headers>
@@ -44,7 +44,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>cookie</ses:name>
-                  <ses:value>$Version=0; 
JSESSIONID=401BA83031A94CBDA416B26EB0A88FB5; $Path=/coreWeb</ses:value>
+                  <ses:value>$Version=0; 
JSESSIONID=BA23A555F01039F7E0B07DDD89D13EA0; $Path=/coreWeb</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>host</ses:name>
@@ -56,7 +56,7 @@
                </ses:header>
                <ses:header>
                   <ses:name>testrecorder.playback.testid</ses:name>
-                  <ses:value>-54834ffa:101889e165b:-7dac</ses:value>
+                  <ses:value>-7c659e2c:101a0830fb0:-7c30</ses:value>
                </ses:header>
                <ses:header>
                   <ses:name>user-agent</ses:name>
@@ -98,60 +98,60 @@
     
 <thead>
 <tr class="datagrid-header">
-        <th class="datagrid-header-cell">Symbol</th>
+        <th class="datagrid">Symbol</th>
 
 
-        <th class="datagrid-header-cell">Price</th>
+        <th class="datagrid">Price</th>
 
 
-        <th class="datagrid-header-cell">Web</th>
+        <th class="datagrid">Web</th>
 
 
     
 </tr></thead>
 
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>BEAS</span></td>
+        <td class="datagrid"><span>BEAS</span></td>
 
-        <td class="datagrid-data-cell"><span>14.35</span></td>
+        <td class="datagrid"><span>14.35</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.bea.com?rowid=1&amp;symbol=BEAS";><span>BEA 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>CSCO</span></td>
+        <td class="datagrid"><span>CSCO</span></td>
 
-        <td class="datagrid-data-cell"><span>19.42</span></td>
+        <td class="datagrid"><span>19.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.cisco.com?rowid=2&amp;symbol=CSCO";><span>Cisco 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>GE</span></td>
+        <td class="datagrid"><span>GE</span></td>
 
-        <td class="datagrid-data-cell"><span>59.42</span></td>
+        <td class="datagrid"><span>59.42</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
+        <td class="datagrid"><a 
href="http://www.ge.com?rowid=3&amp;symbol=GE";><span>General 
Electric</span></a></td>
 
     
 </tr>
 <tr class="datagrid-odd">
-        <td class="datagrid-data-cell"><span>RHAT</span></td>
+        <td class="datagrid"><span>RHAT</span></td>
 
-        <td class="datagrid-data-cell"><span>18.2</span></td>
+        <td class="datagrid"><span>18.2</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
+        <td class="datagrid"><a 
href="http://www.redhat.com?rowid=4&amp;symbol=RHAT";><span>RedHat 
Systems</span></a></td>
 
     
 </tr>
 <tr class="datagrid-even">
-        <td class="datagrid-data-cell"><span>YHOO</span></td>
+        <td class="datagrid"><span>YHOO</span></td>
 
-        <td class="datagrid-data-cell"><span>48.16</span></td>
+        <td class="datagrid"><span>48.16</span></td>
 
-        <td class="datagrid-data-cell"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
+        <td class="datagrid"><a 
href="http://www.yahoo.com?rowid=5&amp;symbol=YHOO";><span>Yahoo 
Inc</span></a></td>
 
     
 </tr>
@@ -178,7 +178,7 @@
          </ses:testResults>
       </ses:test>
    </ses:tests>
-   <ses:endDate>18 Jan 2005, 06:46:14.484 PM MST</ses:endDate>
+   <ses:endDate>23 Jan 2005, 10:49:59.990 AM MST</ses:endDate>
    <ses:sessionStatus>fail</ses:sessionStatus>
    <ses:testCount>1</ses:testCount>
    <ses:passedCount>0</ses:passedCount>

Reply via email to