Hello,
I am using django-selectable on a bigger Web application and I am quite satisfied.
On some large page however I have a performance problem. One of them displays a table with 200 rows and each row contains two django-selectable controls. During the display of the page each control sends its Ajax request, receives the response, inserts it into the page which triggers a new layout of the whole page as it seems (in Firefox). Therefore the display of the page takes a couple a minutes to complete, the last rows taking much longer than the first rows.
I wonder whether it is possible to suppress the initial Ajax request as the data to display is already on the page. For example, if a save the page as a file and reload it, all the data is there in seconds without the requests. Or perhaps there are other means to load the page quicker?
Any help appreciated.
Thanks
yoda