JQGrid,在搜索操作后保留格式化文本框值

时间:2013-07-08 08:42:21

标签: jqgrid

我有一个带有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});   
}

grid with toolbar search, and colName "answer" with textbox

0 个答案:

没有答案