Hello,
With the following filter configuration how can I show a tooltip in the filter input that reflects the configured operator?
Column config:
columns.Bound(c => c.Reference).Filterable(f => f.Cell(c => c.Operator(
"equals"
).ShowOperators(
false
)));
Grid config:
.Filterable(f => f.Mode(GridFilterMode.Row))
The filter input markup would contain the following attribute:
title="Is equal to"
Thanks