Hi,
We have recently upgraded from EO circa 2015 to EO.2019.
A problem we are facing is that when we call QueryScriptCall a few times in succession, the results are not what we expect. Eg:
Code: C#
myWebView.QueueScriptCall("startApp()");
// some .NET stuff
myWebView.QueueScriptCall("startAppSecondPart()");
myWebView.QueueScriptCall("initializePlugin()");
Using the new version, we get JavaScript errors in the initializePlugin() that indicate startApp() has not finished yet, or perhaps not run. If we change all these calls to EvalScript, things initialize as expected, but we get other problems later with re-entrant code (.NET->JS->.NET->JS etc)
Questions:
1. Should we expect that script calls queued will be processed in the order they are queued?
2. Can we assume only one script will be called at once?
Thanks, Paul