我有一个带有textbox formatter列的jqGrid。当我执行搜索操作 在文本框中输入内容后,文本框将被清除。 我想在搜索后保留文本框中的值。 这是我的代码:
colModel : [
{name:'val',index:'val', width:40, align:'center',searchoptions: { sopt: ['eq'] } },
{name:'id',index:'id', width:50,sortable:false,align:'center',edittype: "text",search:false,formatter:ctrlformat}
]
function ctrlformat (cellvalue, options, rowObject ){
return '<input type="text" id='+cellvalue+' name="valId" />';
$("#list").jqGrid('filterToolbar', {stringResult: true, searchOnEnter:true});
}