Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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 old 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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
570 views
Welcome To Ask or Share your Answers For Others

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...