Ext JS JavaScript DHTML



Hello World Window






function makeChildren(ownerTitle) {
  return nestedChildItems =  [
    {
      xtype : 'panel',
      title : 'Child Panel 1',
      html  : 'Panels can contain Children',
      frame : true
    },
  ];
}
Ext.onReady(function() {
  new Ext.Window({
    title    : 'Window 1',
    width    : 200,
    height   : 180,
    items    : makeChildren('Window 1')
  }).show();
});