You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2011/05/16 22:06:47 UTC

svn commit: r1103862 - /myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/html/ext/HtmlDataTableHack.java

Author: lu4242
Date: Mon May 16 20:06:47 2011
New Revision: 1103862

URL: http://svn.apache.org/viewvc?rev=1103862&view=rev
Log:
TOMAHAWK-1584 clientId does not append separator when mojarra is used

Modified:
    myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/html/ext/HtmlDataTableHack.java

Modified: myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/html/ext/HtmlDataTableHack.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/html/ext/HtmlDataTableHack.java?rev=1103862&r1=1103861&r2=1103862&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/html/ext/HtmlDataTableHack.java (original)
+++ myfaces/tomahawk/trunk/core20/src/main/java/org/apache/myfaces/component/html/ext/HtmlDataTableHack.java Mon May 16 20:06:47 2011
@@ -170,7 +170,7 @@ public abstract class HtmlDataTableHack 
                Integer.valueOf(rowIndexString) == rowIndex)
             {
                 //return clientId;
-                return clientId.substring(0,index)+getDerivedSubClientId();
+                return clientId.substring(0,index+1)+getDerivedSubClientId();
             }
         }
         //return clientId + separator + rowIndex;