Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    new Ext.FormPanel({ 
      url: 'your.php',
      renderTo: Ext.getBody(),
      frame: true,
      title: 'Title',
      width: 550,
      items: [ 
                {
            xtype: 'htmleditor',
            name: 'description',
            hideLabel: true,
            labelSeparator: '',
            height: 100,
            anchor: '100%'
          }
      ]
    });
});
 
asdf