Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    new Ext.FormPanel({ 
      url: 'your.php',
      renderTo: Ext.getBody(),
      frame: true,
      title: 'Title',
      width: 250,
      items: [
                {
            xtype: 'checkbox',
            fieldLabel: 'True',
            name: 'e'
          }
      ]
    });
});
 
asdf