mirror of
https://github.com/lxsang/ant-http
synced 2024-11-16 00:28:21 +01:00
25 lines
563 B
JavaScript
25 lines
563 B
JavaScript
|
var dummy_config = {
|
||
|
name: 'dummygrid',
|
||
|
header: 'Dummy plugin',
|
||
|
url: '/dummy',
|
||
|
method: 'GET',
|
||
|
show: {
|
||
|
header : false,
|
||
|
toolbar : true,
|
||
|
footer : true,
|
||
|
lineNumbers : true,
|
||
|
toolbarAdd: true
|
||
|
},
|
||
|
columns: [
|
||
|
{ field: 'id', caption: '#', size: '10%' },
|
||
|
{ field: 'color', caption: 'Text', size: '90%'}
|
||
|
],
|
||
|
searches: [
|
||
|
{ type: 'text', field: 'color', caption: 'Text' }
|
||
|
],
|
||
|
//event
|
||
|
onAdd: function (evt) {
|
||
|
}
|
||
|
}
|
||
|
$().w2grid(dummy_config);
|