私はjqGridが初めてです。editoptions で dataUrl を使用して、行の編集ごとに (編集フォームを表示する前に) 選択ボックスのオプション値を更新しようとしています。
しかし、更新が行われているのが見えず、jqGrid で行を編集しているときに firebug で行われた http 要求が表示されません。
と呼ばれる列でphpファイル"loadPoleManagers.php"
を呼び出しており、phpファイルで、オプション付きの選択したhtmlタグ、純粋なhtmlタグを返します。dataUrl
Pole_manager
何か不足している場合は、誰かアドバイスをいただけますか?
以下は私のjqGridコードです。
$('#groups_grid').jqGrid({
caption: 'Groups',
hidegrid:false,
height:'100%',
width:1024,
imgpath: 'style/jquery.plugins/jqgrid/steel/images',
loadui:'disable',
forceFit:true,
pager: jQuery('#pagerGroups'),
viewrecords:true,
url:'data/xml/grid/groups.php',
datatype: "xml",
mtype:'POST',
ajaxSelectOptions: { cache: false },
colNames:['ID','Name', 'Complete day compulsory', 'Pole manager',
'Support Leader', 'Itrack group name'],
colModel:[
{name:'id_group',index:'id_group', width:40, align:"center"},
{name:'name',index:'name', width:70, resizable:true, editable:true,
editoptions: {size:'20', maxlength:'45'}},
{name:'complete_day_compulsory',index:'complete_day_compulsory',
width:110, align:"center", resizable:true, sortable:true,
editable:true, edittype:'select', editoptions: {value:"0:No;1:Yes"}},
{name:'pole_manager',index:'pole_manager->last_name', width:100,
resizable:true, sortable:true, editable:true,
edittype:'select',editoptions:{dataUrl:'loadPoleManagers.php'}},
{name:'support_leader',index:'support_leader->last_name', width:100,
resizable:true, sortable:true, editable:true, edittype:'select',
editoptions: {value:support_leaders}},
{name:'itrack_group_name',index:'itrack_group_name', width:100,
resizable:true, editable:true, edittype:'text'}
],
rowNum:15,
rowList:[5, 10, 15, 25],
imgpath: 'style/jquery.plugins/jqgrid/steel/images',
sortname: 'id_group',
multiselect: false,
onSelectRow: rowSelectedHandler,
ondblClickRow: function(id){
if(id){
jQuery('#groups_grid').restoreRow(lastEditedGroup);
jQuery('#groups_grid').editRow(id,true);
lastEditedGroup=id;
}
},
loadComplete: function(){
lastEditedGroup = null;
lastSelectedGroup = null;
},
editurl: 'data/forms_handle/edit_group.php'
}).navGrid("#pagerGroups",
{refresh: true, edit: true, add: true, del: true, search: true, view: false},
{height:220, width:690, closeAfterEdit:true, recreateForm:true},
{height:220, width:690, closeAfterAdd:true,recreateForm:true},
{height:140, width:380},
{height:80, width:450, closeAfterSearch:true,closeOnEscape:true,
multipleSearch:true}
);
ありがとう。