Hello,
This is a strange issue as it happens only on some of my tables and only the first time I try to select a row. I am using the decorator technique for wrapping my data. The selectionListener is called every time, but only the second click visually selects the row:
Code:
....
<ice:column>
<ice:rowSelector value="#{dataRow.selected}" multiple="false" selectionListener="#{Some.onSomeRowSelected}" enhancedMultiple="false" />
<f:facet name="header">
<ice:commandSortHeader arrow="true" columnName="id" immediate="true">
<ice:outputText value="#{msg.Id}"/>
</ice:commandSortHeader>
</f:facet>
<ice:outputText value="#{dataRow.data.id}"/>
</ice:column>
...
Any hints are appreciated!
Cheers!