How do I change this numeric filter label to "Min:" and "Max:" ? Instead of From and To.
I tried this but it does not do anything:
columns
.Bound(p => p.Total)
.Title("Total")
.Format("{0:C}")
.Filterable(ftb => ftb.Extra(true)
//.UI("currencyFilter")
.Operators(o => o.
ForNumber(n => n
.IsLessThanOrEqualTo("Min")
.IsGreaterThanOrEqualTo("Max")
)
))
.Width(130);