Easyui 中datagrid组件根据index更新一行记录中某个字段值,增加一行记录

时间:2021-11-17 00:10:10
$("#data_result").datagrid("updateRow",{
index:index, //行索引
row:{
isDefinePrice:1 //行中的某个字段
}
});

上面是更新一行中的某个字段的值。在项目中后台程序没写完之前,我们也会插入一些假数据来查看效果,可以通过如下方式:

$('#data_result').datagrid('insertRow',{
index: 1,
row: {
isHasRightEdit: true,
productCode:'0123344',
productName:'洗衣液',
categoryName:'日用品',
promotionPrice:'22',
isMinusMargin:'是',
suggestedPrice:'18',
minTmallPrice:'19',
commonTmallPrice:'18',
minTmallFloorPrice:'22'
}
});