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: 'radio',
            fieldLabel: '',
            name: 'n',
            boxLabel: 'A'
          },
          {
            xtype: 'radio',
            hideLabel: false,
            labelSeparator: '',
            name: 'n',
            boxLabel: 'B'
          }
      ]
    });
});
 
asdf