显示空白页...请帮助
require(['dojo/_base/lang', 'dojox/grid/DataGrid', 'dojo/data/ItemFileWriteStore', 'dojo/dom', 'dojox/grid/cells/dijit', 'dojo/domReady!'], function (lang, DataGrid, ItemFileWriteStore, dom)
{
var datalist = [{
col1: 123,
col2: 'X',
col3: 'A',
col4: 29.91,
col5: 1,
combo:''
}, {
col1:321,
col2: 'Y',
col3: 'B',
col4: 9.33,
col5: 2,
combo:''
}, {
col1: 456,
col2: 'Z',
col3: 'C',
col4: 19.34,
col5: 1,
combo: ''
}
];
var store = new ItemFileWriteStore({
data: data
});
var layout = [{
'name': 'SNO',
'field': 'id',
'width': '100px',
'editable':'true'
}, {
'name': 'Name',
'field': 'col2',
'width': '100px',
'editable':'true'
}, {
'name': 'Batch ',
'field': 'col3',
'width': '200px',
'editable':'true'
}, {
'name': 'Percent',
'field': 'col4',
'width': '150px',
'editable':'true'
}, {
'name': 'stage',
'field': 'col5',
'width': '150px',
'editable':'true'
}, {
'name': 'combo',
'field': 'combo',
'width': '200px',
'type': 'dojox.grid.cells.ComboBox',
'options':['A','B','C'],
'editable':true
}];
var grid = new DataGrid({
id: 'grid',
store: store,
structure: layout,
rowSelector: '20px'
});
grid.placeAt("gridDiv");
grid.startup();
});