I have a jsf site with a html table, which shows up to 300 rows and 50 columns. Except the table-header and the first column (someones name) all the cells contain a checkbox.

So i have a form with up to 15.000 checkboxes.

Here's the code:

<h:form>
<table>
   <a4j:repeat var="item" value="#{listBean.listItems}" rows="0" >
      <tr>
         <td>#{item.name}</td>

         <a4j:repeat var="box" value="#{item.activations}" >

            <td>
            <a4j:region renderRegionOnly="true" >
               <h:selectBooleanCheckbox value="#{box.checked}"
                     valueChangeListener="#{listBean.activationChanged}"
                     immediate="true" >
                  <a4j:support event="onchange" />
               </h:selectBooleanCheckbox>
            </a4j:region>
            </td>

         </a4j:repeat>

      </tr>
   </a4j:repeat>
</table>
</h:form>

As you can see, i already use regions to keep the rendering fast. I need to use the valueChangelistener, because we must not use a button for submitting. The customer also wants to avoid paging here.

Firefox is very fast. But in IE the checking of a single box takes 3-5 seconds.

Can anybody help me increase the performance of IE here?

thx!

regards

link|improve this question
Yes, use pagination! Server side or client side, doesn't matter, you should never load 300 rows all at once, especially if one row has 50 columns. – Zoidberg Jun 8 '11 at 11:58
Very similar question: stackoverflow.com/questions/6231059/… -- nothing good will come of having a page with that many checkboxes. Redesign. – jamietre Jun 8 '11 at 11:58
Good luck. IE with large tables, plus JavaScript = slow. Bad design = bad performance – epascarello Jun 8 '11 at 11:59
thanks for your comment. i also think that this will be a very confusing and overloaded page for a webapp. but it's requested not to use pagination as this case shows up seldomly. – user789079 Jun 8 '11 at 12:01
Use IE9. Use Ajax. – Raynos Jun 8 '11 at 12:02
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.