Easyui 中datagrid元件根據index更新一行記錄中某個欄位值,增加一行記錄
阿新 • • 發佈:2019-01-03
$("#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' } });