Is it possibile to call javascript function from DirectEvent in Ext.Net 3?
1 Answer
Try:
X.Js.Call("myFunctionName", "param1", "param2");
6 Comments
Stefano Lonati
Ummm...interesting question... try this:
string callbackScript = "function HelloFromJavascript(){alert('hello Javascript!!')}"; Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "HelloFromJavascript", callbackScript, true); |