1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
| $(function(){ $("#grid").datagrid({ columns : [[ { field: "id", title: "编号", width: 100 }, { field: "name", title: "商品名称", width: 100 }, { field: "price", title: "价格", width: 100, formatter: function (value,row,index) { return value.replace("T"," "); } }, { field: 'standard.name', title: '取派标准', width: 120, align: 'center', formatter: function (value, rowData, rowIndex) { if (rowData.standard != null) { return rowData.standard.name; } return ""; } } ]], iconCls: 'icon-forward', fit: true, border: false, rownumbers: true, striped: true, pageList: [10,30, 50, 100], idField: 'id', onDblClickRow: doDblClickRow url : "product.json" , pagination : true , toolbar : [ { id : "saveBtn", text : "保存", iconCls : "icon-save", handler : function(){ alert("保存..."); } }, { id: 'button-search', text: '查询', iconCls: 'icon-search', handler: function () { $("#searchWindow").window('open'); } }, ] }); });
|