jquery grid

来源:互联网 发布:恐怖悬疑电影 知乎 编辑:程序博客网 时间:2024/06/05 00:22

var grid = new easyui.datagrid({

title:"商品列表",
renderer:"gridlist",
singleSelect:false,
idField:'SELLER_ID',
columns:[[
{field:'ck',checkbox:true},
{title:'卖家ID',field:'SELLER_ID',width:140,align:'center',hidden:'true'},
{title:'昵称',field:'NICK',width:180,align:'center'},
{title:'名称',field:'SELLER_NAME',width:260,align:'center'}
]],
toolbar:[{
text:'确定',
iconCls:'icon-save', 
handler:function(){
save();
}
},'-',{
text:'取消',
iconCls:'icon-remove',
handler:function(){
WindowClose("selectGiftNickList");
}
}]
});

0 0