dataTable: only first row encoded properly
------------------------------------------

                 Key: RF-6555
                 URL: https://jira.jboss.org/jira/browse/RF-6555
             Project: RichFaces
          Issue Type: Bug
    Affects Versions: 3.3.0
            Reporter: Ilya Shaikovsky
            Assignee: Nick Belaevski
            Priority: Critical


checked within richfaces-demo

        <rich:dataTable value="#{dataTableScrollerBean.tenRandomCars}" 
var="car" id="table"
        onRowMouseOver="this.style.backgroundColor='#F8F8F8'"
        
onRowMouseOut="this.style.backgroundColor='#{a4jSkin.tableBackgroundColor}'" 
rowClasses="cur">
            <rich:column>
                <f:facet name="header">
                    Make
                </f:facet>
                    <h:outputText value="#{car.make}"/>
            </rich:column>
            <rich:column>
                <f:facet name="header">
                    Model
                </f:facet>
                    <h:outputText value="#{car.model}"/>
            </rich:column>
            <rich:column>
                <f:facet name="header">
                    Price
                </f:facet>
                    <h:outputText value="#{car.price}" />
            </rich:column>

            <rich:componentControl event="onRowClick" for="menu" 
operation="show">
                <f:param value="#{car.model}" name="model"/>
                <f:param value="#{car.make}" name="car"/>
            </rich:componentControl>

        </rich:dataTable>

component control script, styles, and events handlers rendered only for first 
<tr/> element all the other rows not affected..

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        
_______________________________________________
richfaces-issues mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/richfaces-issues

Reply via email to