|
|
document.disableOtherFilters()
Usagedocument.disableOtherFilters(enabledFilterIndex)
Parameters- enabledFilterIndex
- An integer representing the zero-based index of the filter
that should remain enabled after other filters are disabled.
DescriptionMethod;
disables all filters except the one at the specified position in
the Filters list.
ExampleThe
following example disables all filters except the second filter
in the list (index value of 1):
fl.getDocumentDom().disableOtherFilters(1);
|