JqueryeasyUI更新行示例_jquery
时间:2021-07-01 10:21:17
帮助过:19人阅读
更新指定的行, param 参数包含下列特性:
index:更新行的索引。
row:行的新数据。
代码如下:
var grid = $("#QualityAdd").datagrid("updateRow", { index: gridIndex, row: {
Url: ""+r[0].html+""
} });
datagrid 内置对象
代码如下:
{rows:[{No:001,Order:{no:00101,amount:10}}]}
columns: [[
{ title: '订单编号', field: 'no', width: 100,
formatter: function (value, row, index) {
return row.Order.no;
}
},
最终显示 00101