I need to call a javascript function which is included in separate .js file and loaded in Default.html from server side.
But the invocation does not work.
I can’t even get a simple alert box displayed by calling Application.Call(@”window.alert(‘Test’);”);
This results in an exception “Unknown function”…
Do you know what I’m missing here ?
Hi Tobias,
Application.Call takes 2 parameters, so your call should be
Application.Call("window.alert", "test");
Best regards
Frank
Please login first to submit.