[richfaces-issues] [JBoss JIRA] (RF-10756) collapsibleSubtable: id set to tbody differs from component id and break rendering.

H G (JIRA) jira-events at lists.jboss.org
Thu Nov 21 13:33:05 EST 2013


    [ https://issues.jboss.org/browse/RF-10756?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12925888#comment-12925888 ] 

H G commented on RF-10756:
--------------------------

DataTable is one of the most important frequently used components. CollapsibleSubtable adds very nice functionality but is practically useless because of several bugs related to partial updates, breaks filters, etc... All this bugs are very old and targeted to 5-Future. I'd like to see the fixes in the comings releases of RF 5 (alpha 2,3).
                
> collapsibleSubtable: id set to tbody differs from component id and break rendering.
> -----------------------------------------------------------------------------------
>
>                 Key: RF-10756
>                 URL: https://issues.jboss.org/browse/RF-10756
>             Project: RichFaces
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: component-tables
>    Affects Versions: 4.0.0.Final
>            Reporter: Ilya Shaikovsky
>            Assignee: Nick Belaevski
>             Fix For: 5-Future
>
>
> added to richfaces-showcase code:
> 			<rich:column colspan="6">
> 				<rich:collapsibleSubTableToggler for="sbtbl" />
> 				<h:outputText value="#{list.vendor}" />
> 				<a4j:commandButton value="render" render="sbtbl" action="#{carsBean.incDaysLive}">
> 				</a4j:commandButton>
> 			</rich:column>
> 			<rich:collapsibleSubTable value="#{list.vendorItems}" var="item" id="sbtbl"
> 				expandMode="client">
> 				<rich:column>
> 					<h:outputText value="#{item.daysLive}" />
> 				</rich:column>
> and 
>     public void incDaysLive(){
>         for (InventoryVendorList vendor : inventoryVendorLists) {
>             for (InventoryVendorItem item : vendor.getVendorItems()) {
>                 item.setDaysLive(item.getDaysLive()+1);
>             }
>             
>         }
>     }
> do not see values updated before refreshing the browser.
> According to log update came fine for the subtable. just wrapper tbody has different id than specified at component. so it can't be updated.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the richfaces-issues mailing list