Is there any way to force the Notification window to paint on screen before a (long) calculation. (i use Internet explorer)
Now I have some code:…
// container for window
$( “#myNotification” ).html( ‘<span style=”font-size: 20px”> <b>Start Calculations</b>’ );
$( “#notificationWindow” ).jqxNotification( { template: “info” } );
$( “#notificationWindow” ).jqxNotification( “open” );
//then heavy calculations..
But when the calculations are finish the window is visible (to late).
I have experimented with settimeout etc without any result.