Hi
The busy cursor as shown by promptStyle: "cursor" sometimes does not disapear after all DS- and RPC-Requests are terminated.
For testing we removed all showPrompt and promptStyle settings from our sourcecode but the problem was still there:
The UI blocks sometimes with or without busy-cursor.
We saw the problem first with 13.0-p20220422 and also with the current build 13.0-p20220617
13.0-p20220219 is ok, no UI blocking.
It seems that the problem is related to saved searches:
Because we don't use isc.ListGrid and isc.TreeGrid directly we could resolve the issue by patching all classes that extend it with
initSaveSearches: function() { return false; }
Regards Bruno
The busy cursor as shown by promptStyle: "cursor" sometimes does not disapear after all DS- and RPC-Requests are terminated.
For testing we removed all showPrompt and promptStyle settings from our sourcecode but the problem was still there:
The UI blocks sometimes with or without busy-cursor.
We saw the problem first with 13.0-p20220422 and also with the current build 13.0-p20220617
13.0-p20220219 is ok, no UI blocking.
It seems that the problem is related to saved searches:
Because we don't use isc.ListGrid and isc.TreeGrid directly we could resolve the issue by patching all classes that extend it with
initSaveSearches: function() { return false; }
Regards Bruno
Comment