87,993
社区成员
发帖
与我相关
我的任务
分享
$(function() {
var products = [
{ id: '1', name: 'Koi' },
{ id: '2', name: 'Dalmation' },
{ id: '3', name: 'Rattlesnake' },
{ id: '4', name: 'Iguana' },
{ id: '5', name: 'Manx' },
{ id: '6', name: 'Persian' },
{ id: '7', name: 'Amazon Parrot' }
];
$('#dg').datagrid({
url: 'datagrid_data1.json',
method: 'get',
title: 'Context Menu on DataGrid',
iconCls: 'icon-save',
width: 700,
height: 250,
fitColumns: true,
singleSelect: true,
columns: [
[
{ field: 'itemid', title: 'Item ID', width: 80 },
{ field: 'productid', title: 'Product ID', width: 120 },
{ field: 'listprice', title: 'List Price', width: 80, align: 'right' },
{ field: 'unitcost', title: 'Unit Cost', width: 80, align: 'right' },
{ field: 'attr1', title: 'Attribute', width: 250 },
{ field: 'status', title: 'Status', width: 60, align: 'center' },
{ field: 'per', title: '类别', width: 200, editor: { type: 'combobox', options: { valueField: 'id', textField: 'name', data: products } } }
]
]
});
});
