开发者

Change filterToolbar options dynamically

Is there any way that i can set 'filterToolbar' options dynamically?

here is my problem.

  1. initially i need a filter according to the search options as - 'defaultSearch : "eq"

  2. after a button click i need to change the search option as - defaultSearch : "cn"

    one approach could be set the defaultSearch option dynamically ( i don't know weather it is possible) and other would be remove the o开发者_C百科ld filtertoolbar and add the new filtertoolbar with the defaultsearch as "cn" .

is this possible with the jqgrid? please let me know. appreciate your help. Thank you in advance.


I find your question interesting so before all +1 from me.

You can't change the value of defaultSearch parameter of filtertoolbar, but you can change dynamically:

$("#list").jqGrid('setColProp','name',{searchoptions:{sopt:['cn']}});

In the demo the initial searching option in the 'Client' column defined by defaultSearch and is 'cn'. By clicking on two buttons above the grid you can change the option to 'bw' (begin with) or 'ew' (end with). You can easy verify on the demo that the way work.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜