clearFilter(uniqueName: String)
[starting from version: 1.4]
Clears the filter which was applied previously to the specified field.
pivot.setFilter("Country", { "members": [ "country.[poland]", "country.[uk]", "country.[ukraine]", ] });pivot.getFilter("Country");/*method getFilter() returns the following Object:{ "members": [ "country.[poland]", "country.[uk]", "country.[ukraine]" ]}*/pivot.clearFilter("Country");pivot.getFilter("Country");/*after clearFilter() call, method getFilter() returns null:null*/
Open the example on JSFiddle.
getFiltersetFilter
In this guide