Ext JS JavaScript DHTML



Hello World Window






function makeChildren(ownerTitle) {
  return nestedChildItems =  [
    {
      xtype : 'panel',
      title : 'Child Panel 1',
      frame : true,
      items : {
        xtype : 'panel',
        title : 'Child 1 of "Child Panel 1"',
        html  : "a grand child of " + ownerTitle,
        frame : true
      }
    }
  ];
}
Ext.onReady(function() {
  new Ext.Panel({
    renderTo : Ext.getBody(),
    title    : 'Panel 1',
    width    : 500,
    height   : 680,
    items    : makeChildren('Panel 1')
  });
});