Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
  var myDiv1 = Ext.get('div1');
  myDiv1.createChild({
    tag  : 'div',
    html : 'Child from a config object'
  });
});