You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2015/02/20 08:55:57 UTC

svn commit: r1661070 - /myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-sort.xhtml

Author: lofwyr
Date: Fri Feb 20 07:55:57 2015
New Revision: 1661070

URL: http://svn.apache.org/r1661070
Log:
update tests

Modified:
    myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-sort.xhtml

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-sort.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-sort.xhtml?rev=1661070&r1=1661069&r2=1661070&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-sort.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-sort.xhtml Fri Feb 20 07:55:57 2015
@@ -23,7 +23,7 @@
     xmlns:f="http://java.sun.com/jsf/core">
 
   <tc:page id="page">
-    <tc:gridLayoutConstraint width="600px" height="600px"/>
+    <tc:gridLayoutConstraint width="1000px" height="600px"/>
 
     <tc:sheet value="#{sort.list}" id="sheet" columns="*;*;*;*;*;*" var="entry">
       <tc:column label="tc:out" id="first" sortable="true">
@@ -43,13 +43,19 @@
           <f:convertDateTime timeZone="UTC" pattern="dd. MMM yyyy"/>
         </tc:date>
       </tc:column>
-      <tc:column label="tc:link -> tc:out" id="sixth" sortable="true">
+      <tc:column label="tc:link -> tc:out" id="sixth" sortable="true"
+                 tip="This doesn't work until https://issues.apache.org/jira/browse/TOBAGO-1429"
+          >
         <tc:link id="link2">
-          <tc:out value="#{entry.sixth}" id="out2"/>
+          <f:facet name="label">
+            <tc:label value="#{entry.sixth}" id="label"/>
+          </f:facet>
         </tc:link>
       </tc:column>
     </tc:sheet>
 
+    <tc:label value="The 6th column doesn't work until https://issues.apache.org/jira/browse/TOBAGO-1429" markup="error"/>
+
     <tc:script file="script/tobago-assert.js"/>
 
     <tc:script onload="TobagoAssert.assertContent('page:sheet:0:out', 'A');"/>