- 
        1. RichFaces 4.0 Table selection problem IE7 (ajax)ilya_shaikovsky Apr 20, 2011 6:59 AM (in response to cojocb)please try 4.0.1-snapshot. if not helps please share war file of your project. 
- 
        2. RichFaces 4.0 Table selection problem IE7 (ajax)cojocb Apr 20, 2011 8:51 AM (in response to ilya_shaikovsky)Hi, With the 4.0.1-SNAPSHOT is the same behaivour. I'll try to have the same dependency version like for the demoshow case and let you know if the problem persist. 10x, Bogdan Ps:i cannot post application war. 
- 
        3. RichFaces 4.0 Table selection problem IE7 (ajax)cojocb Apr 20, 2011 10:22 AM (in response to ilya_shaikovsky)Hi, It might be a facelet Bug. In this case there is a single form per page which is defined in the main template. Having the form defined before the table it solved my problem. Some code: main template <h:body> <h:form id="frm"> ........ <div id="content"> <ui:insert name="content">Default Content</ui:insert> </div> list template <ui:composition template="main.xhtml"> <ui:define name="content"> ...... <div id="listContent"> <ui:insert name="listContent">List Content</ui:insert> </div> the list (before): <ui:define name="listContent"> <rich:extendedDataTable value="#{appCtrl.listData}" var="app" id="appTbl" selectionMode="multiple" selection="#{appCtrl.selection}"> the list (after): <ui:define name="listContent"> <h:form id="tblFrm"> <rich:extendedDataTable value="#{appCtrl.listData}" var="app" id="appTbl" selectionMode="multiple" selection="#{appCtrl.selection}"> Greetings, Bogdan 
- 
        4. RichFaces 4.0 Table selection problem IE7 (ajax)ilya_shaikovsky Apr 21, 2011 3:07 AM (in response to cojocb)But consider that nested forms isn't allowed in JSF 
 
    