extJS

Data:

var store = new Ext.data.Store({
        fields:['name', 'email', 'phone'],
        data:[
                { 'name': 'Lisa',  "email":"[email protected]",  "phone":"555-111-1224"  },
                { 'name': 'Bart',  "email":"[email protected]",  "phone":"555-222-1234" },
                { 'name': 'Homer', "email":"[email protected]",  "phone":"555-222-1244"  },
                { 'name': 'Marge', "email":"[email protected]", "phone":"555-222-1254"  }
            ]
    });
    var genres = new Ext.data.SimpleStore({
                fields: ['id', 'genre'],
                data :  [
                            ['1','Comedy'],
                            ['2','Drama'],
                            ['3','Action']
                        ]
            });

 

Columns:

var grid = new Ext.grid.GridPanel({
        store: store,
        columns:[
            {header: "Title", dataIndex: 'name'},
            {header: "email", dataIndex: 'email'},
            {text: "phone", dataIndex: 'phone'}
        ]
    });

转载于:https://www.cnblogs.com/qingxinliwu/p/3210908.html

你可能感兴趣的:(extJS)