h:inputText inside trinidad table does not have correctly generated id's
------------------------------------------------------------------------
Key: TRINIDAD-1004
URL: https://issues.apache.org/jira/browse/TRINIDAD-1004
Project: MyFaces Trinidad
Issue Type: Bug
Components: Components
Affects Versions: 1.2.6-core, 1.2.7-core
Environment: Linux
Reporter: Tomas Cerny
Priority: Minor
Fix For: 1.2.7-core
h:inputText inside trinidad table does not have correctly generated id's:
<tr:table emptyText="No x were found." allDetailsEnabled="true"
id="xTable" varStatus="counter"
var="x" rowBandingInterval="1" value="#{xs}"
rows="10" summary="x" styleClass="trinidadTable" >
<tr:column headerText="Header">
<h:outputText value="#{x.name}" id="x"/>
</tr:column>
............
produces records with id=0
eg.
id="form:xTable:0:x
id="form:xTable:0:x
id="form:xTable:0:x
id="form:xTable:0:x
id="form:xTable:0:x
---------------------------------------
this works fine
<tr:table emptyText="No x were found." allDetailsEnabled="true"
id="xTable" varStatus="counter"
var="x" rowBandingInterval="1" value="#{xs}"
rows="10" summary="x" styleClass="trinidadTable" >
<tr:column headerText="Header">
<tr:outputText text="#{x.name}" id="x"/>
</tr:column>
...................................
id="form:xTable:0:x
id="form:xTable:1:x
id="form:xTable:2:x
id="form:xTable:3:x
id="form:xTable:4:x
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.