Element html.table.filter.Custom

Substitution Groups:
html.table.filter.IFilterFunction

A custom filter function.
Allows you to define a custom test to filter values (ex: filtering int values with expressions such as '>1 & <99')


Attributes
optional   String FilterBeanName The name of the filter value contextual bean.
Default: $filter.
optional   String CompiledFilterBeanName The name of the compiled filter value contextual bean.
Default: $cfilter.
optional   String TextBeanName The name of the text contextual bean.
Default: $text.

Named Children Elements
optional   binding.Expression Compile Expression that compiles the filter value (text) into an intermediate object.
Supported contextual beans: $filter (the input filter text)
mandatory   binding.Expression Eval Expression that evaluates the filter.
Supported contextual beans:
  • $filter: the filter value (text),
  • $cfilter: the compiled filter (if Compile expression set),
  • $text: the text value to test,