Note that there are some explanatory texts on larger screens.

plurals
  1. POjquery dialog table causes ie to lockup
    primarykey
    data
    text
    <p>I am working on an internal website that uses jquery's dialog box. When I open the dialog box, it uses an ajax-loader.gif while the application is getting data from the server.</p> <p>This works fine and dandy in FF, of course IE is struggling. Here is the code...</p> <pre><code>$("#inputDiv5").html('&lt;div style="font-size:100%;height:300px;overflow-y:scroll;"&gt;&lt;div id="inputDiv6"&gt;&lt;center&gt;&lt;img src="/tps/images/ajax-loader.gif" alt="Loading..." /&gt;&lt;/center&gt;&lt;/div&gt;&lt;/div&gt;').dialog({ title: 'Databanks for ' + $("#PidTitle" + count).text(), width: 500, modal: true, resizable: false, open: function() { $.get('content_backend_pub_pid_2_5.ashx', { cmd: 11, pid: x }, function(o) { $("#inputDiv6").html(o); $(".sortablethree th").addClass("sort_header"); $(".sortablethree").tablesorter({ widgets: ["zebra"] }); $(".sortablethree tr").hover(function() { $(this).addClass("over"); }, function() { $(this).removeClass("over"); }); }); }, buttons: { 'Close': function() { $(this).dialog('close'); } } }); </code></pre> <p>It probably is not the best written code since this is my first time using jquery, so don't make fun! Lol! ;-)</p> <p>The issue is in IE the animation displays, but does not spin. FF it spins while the data is being loaded.</p> <p>I did run some tests. I commented out the code within the success function of the get and the animation works. So it looks like it is slowing down when I declare the table a tablesorter. This table does return about 1000 rows.</p> <p>I added the animation to a lone paragraph in the DOM and that animation stops working too.</p> <p>Also, I had task manager opened up when I open the dialog box and there is a large spike in CPU usage.</p> <p>Any thoughts?</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload