Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    Ext.QuickTips.init();
    
    var htmlEditor = {
      xtype      : 'htmleditor',
      fieldLabel : "Enter in any text",
      anchor     : '100% 100%'
    }
      
    new Ext.Window({
      title      : '',
      layout     : 'form',
      labelWidth : 100,
      height     : 300,
      width      : 640,
      bodyStyle  : 'padding: 5px',
      items      : htmlEditor
    }).show();
});
 
asdf