Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
      var values = new Ext.data.SimpleStore({
          fields: ['id', 'value'],
          data : [['1','A'],['2','B'],['3','C']]
      });
    new Ext.FormPanel({ 
      url: 'your.php',
      renderTo: Ext.getBody(),
      frame: true,
      title: 'Title',
      width: 250,
      items: [
              {
            xtype: 'combo',
            name: 'value',
            fieldLabel: 'Value',
            mode: 'local',
            store: values,
            displayField:'value',
            width: 130,
            listeners: {
              select: function(f,r,i){
                Ext.Msg.alert('Title',i);
              }
            }            
          }
      ]
    });
});
 
asdf