Hi together
I want to display a calender inside a jqxPanel. The calendar is a real big HTML <div> of about 500.000 bytes length. I put the HTML code into the panel using:
var html = ‘…’; // Real big HTML code
var panel = $( ‘#mypanel’ );
panel.jqxPanel();
panel.jqxPanel(‘clearContent’);
panel.jqxPanel(‘append’, html);
Everything works fine in Chrome and Firefox. The IE takes minutes until the HTML is displayed. Scrolling is impossible in IE. The IE obviously hangs up.
If I do not use the jqxPanel but a simple jquery object (i.e. a <div>) and set the content via
panel.html(html);
the result is quite OK. It is still slow, but it works.
Is there any workaround to use jqxPanels with large HTML content in IE?
Thanks for any answer
Thomas