Hi Tony,
It does work. I needed to change the z-index so that it will come over the dialog:
$(“#lui_”+grid_id).css(“z-index”, 1000);
$(“#load_”+grid_id).css(“z-index”, 1001);
and revert to the original z-index at the end:
$(“#lui_”+grid_id).css(“z-index”, 100);
$(“#load_”+grid_id).css(“z-index”, 101);
Thanks!