我想在jqGrid的導航欄代碼的自定義按鈕(我是新來的jqGrid)。它的功能很簡單...基於選定的行,它必須從服務器獲取一些信息,然後用請求的信息打開一個對話框。在導航尋呼機jqGrid的自定義BUTTOM創建自定義對話框
這裏,我們去:
.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.
});
}
},
我見過一對夫婦的例子,但我只是弄糊塗了。有沒有人可以幫我解決這個問題......先謝謝了。
UPDATE ......我解決像這樣:
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'});
});
所有數據操作已在服務器端進行了...
的感謝!