Could anyone help me insert below progress bar inside Ext.window? or any other suggestions to add a progress bar inside Ext.window?
var p = Ext.create(\'Ext.
You have multiple ways to do that. You could add the existing progress bar to the existing window:
window.add(p);
Or add the existing progress bar when creating the window:
new Ext.Window({
items: [p]
);
Or create a new progress bar when creating the window:
new Ext.Window({
items: [{
xtype: 'progressbar'
}]
);