1
我有一個問題,使用額外的按鈕顯示網格作爲子網格。 我試圖複製代碼jqgrid顯示網格作爲單獨的按鈕子網格
subGridRowExpanded:
事件。 但是,在觸發subGridRowExpanded之前,Grid正在做一些令人討厭的事情。 如果我使用左側的+按鈕,網格顯示正確。如果我現在按下我創建的按鈕,則子網格也會重新加載。我在開始時使用了一個警告來停止函數,並且我看到該表插入在subGridRowExpanded之前。
所以我想我在事件之前缺少一個函數。也許我正在爲我的任務使用錯誤的事件。
這是我的代碼,這是從基本示例。生成按鈕的功能:
gridComplete: function(){
var ids = jQuery("#task").jqGrid('getDataIDs');
var running_task_ids=get_running_task_id_ajax();
for(var i=0;i < ids.length;i++){
var cl = ids[i];
start = "<input style='height:22px;width:50px;' type='button' value='Start' onclick=\"start_stop_task('"+cl+"','start');\" />";
stop = "<input style='height:22px;width:50px;' type='button' value='Stop' onclick=\"start_stop_task('"+cl+"','stop');\" />";
se = "<input style='height:22px;width:50px;' type='button' value='Save' onclick=\"jQuery('#task').saveRow('"+cl+"');\" />";
//ce = "<input style='height:22px;width:20px;' type='button' value='C' onclick=\"jQuery('#task').restoreRow('"+cl+"');\" />";
co = "<input style='height:22px;width:70px;' type='button' value='Comment' onclick=\"foobar('task_"+cl+"',"+cl+");\" />";
}
}
被調用的函數(從電網如亞柵格實施例只是複製):
function foobar(subgrid_id, row_id) {
// klappt noch nicht!
alert(subgrid_id+":"+row_id);
// we pass two parameters
// subgrid_id is a id of the div tag created whitin a table data
// the id of this elemenet is a combination of the "sg_" + id of the row
// the row_id is the id of the row
// If we wan to pass additinal parameters to the url we can use
// a method getRowData(row_id) - which returns associative array in type name-value
// here we can easy construct the flowing
var subgrid_table_id, pager_id;
subgrid_table_id = subgrid_id+"_t";
pager_id = "p_"+subgrid_table_id;
$("#"+subgrid_id).html("<table id='"+subgrid_table_id+"' class='scroll'></table><div id='"+pager_id+"' class='scroll'></div>");
jQuery("#"+subgrid_table_id).jqGrid({
url:"ajax/listtasktime/id/"+row_id,
onSelectRow:
function(id){
if(id && id!==lastsel2){
jQuery('#'+subgrid_table_id).jqGrid('restoreRow',lastsel2);
//jQuery('#task').jqGrid('editRow',id,true,pickdates_e);
jQuery('#'+subgrid_table_id).jqGrid('editRow',id,true);
lastsel2=id; }
},
datatype: "xml",
colNames: ['ID','START','END', 'Time'],
colModel: [
{name:"ID",index:"num",width:80,key:true},
{name:"START",index:"item",width:180,editable: true},
{name:"END",index:"qty",width:180,align:"right",editable: true},
{name:"TIME",index:"qty",width:180,align:"right"}
],
rowNum:20,
pager: pager_id,
sortname: 'num',
sortorder: "asc",
height: '100%'
});
jQuery("#"+subgrid_table_id).jqGrid('navGrid',"#"+pager_id,{edit:false,add:false,del:false})
alert("done");
}