我有一个带有文本框格式化程序列的 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});
}