Load data from server and feed into ComboBox : ComboBox « Ext JS « JavaScript DHTML






Load data from server and feed into ComboBox

  



<html>
<head>
<title>Hello World Window</title>
<link rel="stylesheet" type="text/css" href="ext-3.0.0/resources/css/ext-all.css" />
<script type="text/javascript" src="ext-3.0.0/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="ext-3.0.0/ext-all.js"></script>

</head>
<body>
<script type="text/javascript">
Ext.onReady(function() {
        var values = new Ext.data.Store({
            reader: new Ext.data.JsonReader({
                fields: ['id', 'name'],
                root: 'rows'
            }),
            proxy: new Ext.data.HttpProxy({
                url: 'data.php'
            }),
            autoLoad: true
        });
        
    new Ext.FormPanel({ 
      url: 'your.php',
      renderTo: Ext.getBody(),
      frame: true,
      title: 'Title',
      width: 550,
      items: [ 
                {
            xtype: 'combo',
            name: 'value',
            fieldLabel: 'Value',
            mode: 'local',
            store: values,
            displayField:'name',
                    valueField: 'id',
            width: 130
          }
      ]
    });


});
</script> 
<div id='div1'>asdf</div>
</body>
</html>

   
    
  








Related examples in the same category

1.Add combobox to a window and set width
2.Set up combobox field
3.Indicate display field for a ComboBox and SimpleStore
4.ComboBox selection event
5.Validate checkboxes/radios as a group
6.Combo with Templates and Ajax
7.Ext.form.ComboBox selectOnFocus:true
8.typeAhead for Ext.form.ComboBox