- Can we assign an nx.ui.Application to a DOM object. Now the NeXt needs to use the whole web page and if want to use it inside another web page, we plug it in via iframe.
- What if we have external web app and <div id="next-app"></div> inside of it. Can we assign NeXt application to this div and then 'attach' all the components inside of it.
You can use this.
var app = new nx.ui.Application();
app.container(document.getElementById('app'));
topo.attach(app);
Comments
0 comments
Please sign in to leave a comment.