I have a view which basically shows a bunch of rows and columns in a grid (which come directly from a table).
So far this is working fine, however, when I have 600 rows in the table and about 30 columns the page is not viewed in Chrome whilst the CPU stays at about 50%.
Clearly I need to put in some sort of paging but I was wondering whether this is as expected (i.e. large html documents cannot be viewed in a browser) and also is there a way I can save the view as a text file rather than trying to view it in the browser? In other words, to see the content of the page (like page view source) before the browser tries to render it.
** Further Investigation **
I am currently using JQueryMobile and I removed the scripts the page references and the table is no loading. Any ideas why the scripts are causing so much problems with loading?
TIA
JD
My bad, I just wanted to get data in a table and as I was working with JQueryMobile in another project so I used the checkboxes from JQM which are not designed to handle large amounts of data.
I am currently paging and the data is shown as expected.
Thanks to all those that helped.