Js: Open New Tab From Callback Fn (opening In New Window, No Tab)
window.open(window.location + 'pdf?' + Ext.urlEncode(params)); When I call it from plan code, it opens normal in new tab. When I want to open it from callback ( interaction with s
Solution 1:
Answer : we need to create window before callback function: var win = window.open
. And then in callback we can change location of this window.
Post a Comment for "Js: Open New Tab From Callback Fn (opening In New Window, No Tab)"