Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function(){
  var formPanel = new Ext.form.FormPanel({
    title:'HtmlEditor Example',
    applyTo:'mainContent',
    layout:'form',
    labelAlign:'top',
    width:600,
    autoHeight:true,
    frame:true,
    items:[{
      xtype:'htmleditor',
            id:'bio',
            fieldLabel:'Comment',
            height:200,
            anchor:'98%'
    }]
  });
});