Hello,
how can i open a new website in popup ?
I tried this :
webix.ui({
view:“popup”,
width: 400, height:300,
top:200, left: 300,
body:{
// url:“www.google.de”
template:“http->google.de”
}
}).show();
but it doesnt´t work
Hello,
how can i open a new website in popup ?
I tried this :
webix.ui({
view:“popup”,
width: 400, height:300,
top:200, left: 300,
body:{
// url:“www.google.de”
template:“http->google.de”
}
}).show();
but it doesnt´t work
Template can load data only from the same domain ( or domain which allows cross site requests )
You can use iframe ( not all site works with iframes, though )
thank you … it works fine