datagrid loadData 使用方法
Posted 杨静敏1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了datagrid loadData 使用方法相关的知识,希望对你有一定的参考价值。
id="accountInfo" class="easyui-datagrid" style="height:200px;width:auto"
必须有高度
$(‘#accountInfo‘).datagrid(‘loadData‘, {total:0,rows:jsondata.obj.accountInfoList});
jsondata.obj.accountInfoList是一个array
var rows = $(‘#accountInfo‘).datagrid(‘getRows‘);
var accountInfos = [];
for (var i = 0; i < rows.length; i++) {
var accountInfo = {};
accountInfo.busi_type_ext = rows[i].busi_type_ext;
accountInfo.acctname_cn = rows[i].acctname_cn;
accountInfo.acct = rows[i].acct;
accountInfo.sub_acct = rows[i].sub_acct;
accountInfo.dep_bank = rows[i].dep_bank;
accountInfo.sub_branch_no = rows[i].sub_branch_no;
accountInfos.push(accountInfo);
}
var obj = {
accountInfoList : accountInfos
};
以上是关于datagrid loadData 使用方法的主要内容,如果未能解决你的问题,请参考以下文章
EasyUI中, datagrid用loadData方法绑定数据。
easyuidatagrid中load,reload,loadData的区别
easyuidatagrid中load,reload,loadData的区别。