Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a simple data in mysql and want to populate that data in a Extjs grid

My code


Ext.onReady(function(){

    var proxy=new Ext.data.HttpProxy(    {url:'connectextjs.php'});

          var reader=new Ext.data.JsonReader(
            [
                {name: 'Employee_ID', mapping: 'Employee_ID'},
                {name: 'Department_ID'},           
                {name: 'Name'}, 
                {name: 'Email'},

            ]
        )

        var store = new  Ext.data.Store(    {
          proxy:proxy,
          reader:reader
       });

    store.load();


    // create the grid
    var grid = new Ext.grid.GridPanel({
        store: store,
        columns: [
            {header: "Employee_ID", width: 90, dataIndex: 'Employee_ID', sortable: true},
            {header: "Department_ID", width: 90, dataIndex: 'Department_ID', sortable: true},
            {header: "Name", width: 90, dataIndex: 'Name', sortable: true},
            {header: "Email", width: 200, dataIndex: 'Email', sortable: true},

        ],
        renderTo:'example-grid',
        width:540,
        height:200
    });

});

My problem is I can't load the data on the grid. Please help me I am new to Extjs

Thanks

share|improve this question
What does connectextjs.php return? – Molecular Man Sep 17 '11 at 6:55

1 Answer

connectextjs.php should return the json formated data with Employee_ID,Deaprtment_ID ,Name and Email init. Namming Convention should be followed strictly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.