We have updated Flexmonster Software License Agreement, effective as of September 30, 2025 (list of changes)
All documentation

clearFilter

clearFilter(uniqueName: String)

[starting from version: 1.4]

Clears the filter which was applied previously to the specified field.

Parameters

Parameter/TypeDescription
uniqueName
String
The field’s unique name.

Example

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.

See also

getFilter
setFilter