javascript - How to open a window when a window is already open in extjs -


i want open new window window open. window opening @ of window open?? new extjs , using extjs 6.
model: true
bringtofront: true
both not workingenter image description here

here in image see when click on edit small window opening @ window want open @ front of window.
hope understand problem now

the method show() (tofront() also) trick you. here small example:

var = new ext.window({     title: 'a',      width: 200,     height: 200 }).show();  var b = new ext.window({     title: 'b',      width: 200,     height: 200 }).show();  a.show(); // or a.tofront(); 

there property tofrontonshow, true default.


Comments

Popular posts from this blog

qt - QML MouseArea onWheel event not working properly when inside QML Scrollview -

java - is not an enclosing class / new Intent Cannot Resolve Constructor -

python - Error importing VideoFileClip from moviepy : AttributeError: 'PermissionError' object has no attribute 'message' -