Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
  var myDiv1 = Ext.get('div1');
  myDiv1.createChild({
    tag      : 'div',
    id       : 'nestedDiv',
    style    : 'border: 1px dashed; padding: 5px;',
    children : {
       tag  : 'div',
       html : 'A nested div',
       style : 'color: red; border: 1px solid'
    }
  });
});