ace admin jqgridテンプレートからcsrfトークンを渡そうとしています。laravelでcsrfトークンを渡すには5.4 version for jqgrid?
jQuery(grid_selector).jqGrid({
data: grid_data,
datatype: "local",
height: 250,
colNames:[' ', 'ID', 'Name', 'Email'],
colModel:[
{name:'myac', index:'', width:80, fixed:true, sortable:false,
resize:false,
formatter:'actions',
formatoptions:{
keys:true,
delOptions:{recreateForm: true, beforeShowForm:beforeDeleteCallback},
editformbutton:true,
editOptions:{recreateForm: true, beforeShowForm:beforeEditCallback, beforeSubmitCell: beforeSubmitCell}
}
},
{name:'id',index:'id', width:60, sorttype:"int", editable: true},
{name:'name',index:'name', width:150,editable: true, editoptions:{size:"30",maxlength:"50"}},
{name:'email',index:'email', width:150,editable: true, editoptions:{size:"30",maxlength:"50"}}
],
viewrecords : true,
rowNum:10,
rowList:[10,20,30],
pager : pager_selector,
altRows: true,
//toppager: true,
multiselect: true,
//multikey: "ctrlKey",
multiboxonly: true,
loadComplete : function() {
var table = this;
setTimeout(function(){
styleCheckbox(table);
updateActionIcons(table);
updatePagerIcons(table);
enableTooltips(table);
}, 0);
},
editurl: "{{ route('adminCrud', ['menu' => 'users', 'oper' => 'edit']) }}",
caption: "Users Listings"
});
function beforeSubmitCell(rowid,celname,value,iRow,iCol) {
alert('rowid => ', rowid);
return {token:'test'}
}
その前に入力していません。送信する必要があります。どのように正確にcsrfトークンを渡す必要がありますか?
beforeSubmitCellは、cellEditがオンの場合に起動します。フォームの編集では、フォーマッタアクションを使用します。イベントは決して発動しません。 –
だから、これは何のための解決策ですか? – Mithun