我正在尝试在 Jqgrid 的导航栏中编写一个自定义按钮(我是 JqGrid 的新手)。它的功能很简单...根据选定的行,它必须从服务器获取一些信息,然后打开一个包含请求信息的对话框。
开始了:
.navButtonAdd('#pager-list',{
caption: "",
title: "View products",
buttonicon:"ui-icon-clock",
onClickButton : function () {
var line = $('#grid-list').jqGrid('getGridParam', 'selrow');
if ( line == null ) {
alert("please select a row!");
}
else {
$.get('products.php', { rowSel: line }, function ( data ) {
I want to implement a dialog that will open and set something(using the JSON response from server DATA).
like this very simple:
Product ID: data[0].pID;
Product Name: data[0].pName;
Product Price: data[0].pPrice;
and a close button.
});
}
},
我看过几个例子,但我只是感到困惑。任何人都可以帮助我进行此编码...在此先感谢。
更新...我解决了这样的问题:
else {
$.get('products.php', { rowSel: line },
function ( data ) {
$.jgrid.info_dialog('Review Products',data, $.jgrid.edit.bClose,{buttonalign:'center', width:'auto',resize: true , align: 'left'});
});
所有的数据操作都是在服务器端进行的......
谢谢!