jQWidgets Forums
jQuery UI Widgets › Forums › Grid › bindingcomplete, addfilter, filtervalue
This topic contains 7 replies, has 3 voices, and was last updated by panky 11 years ago.
-
Author
-
Hi, I just want to set the filtervalue to, let say, “CE” when loading the grid.
First I thought, why not setfiltervalue: 'CE'
when setting up the columns. But that doesnt work.
I had to add the following code
$("#jqxgrid").bind("bindingcomplete", function (event) { var filtergroup = new $.jqx.filter(); var filter_or_operator = 1; var filtervalue = 'CE'; var filtercondition = 'equal'; var filter1 = filtergroup.createfilter('stringfilter', filtervalue, filtercondition); filtergroup.addfilter(filter_or_operator, filter1); $("#jqxgrid").jqxGrid('addfilter', 'code', filtergroup); $("#jqxgrid").jqxGrid('applyfilters');});
Can it be done easier by just setting the filtervalue on ‘CE’ in the columns?
It is a ‘list’ filtertype.Second question:
Can we remove or rename the ‘Please chose’ option in a list-filtertype?thank you.
The Grid’s Filtering sample adds a filter to the first column. You can use the same pattern.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comThx Peter, so its like I wrote, can not be done by just adding ;
{ text: 'pModel', dataField: 'model_naam', width: '10%',filterable: false, filtervalue: "test" }
(adding: filtervalue: “test” )
I couldnt find a sollution for my second question :Can we remove or rename the ‘Please chose’ option in a list-filtertype?
Hi redjane,
“Please Choose” is specified in the localization object used by jqxGrid. You can set a new localization object in order to remove it.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comAll works great… but
when setting a filter on grid load, the list-filtertype is set to “Please choose:” not the filtervalue. Something I forgot?Peter, I must say: GREAT support ! Even if we have stupid little questions
Hi
Can we remove or rename the ‘Please chose’ option in a list-filtertype?
-Panky
Hi panky,
If you want to rename, localize strings, then you can look at: http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgrid/jquery-grid-localization.htm
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.com/Awesome Thanks Peter !!
-Panky
-
AuthorPosts
You must be logged in to reply to this topic.