Rank: Member Groups: Member
Joined: 12/10/2015 Posts: 17
|
Why sometimes has been WebView1.CanEvalScript=False, what is the reason?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,229
|
Hi,
There are various different reasons. One of the most common scenario for CanEvalScript to be false is a script call is currently in progress. Due to JavaScript's threading model, it can not be be re-entered. So while a previous JavaScript call is in progress, another one can not started (it can be queued), in that case CanEvalScript will be false.
Thanks!
|
Rank: Member Groups: Member
Joined: 12/10/2015 Posts: 17
|
Thanks support. I might have performed the wrong JS code
|