
In a grid with FilterMode = GridFilterMode.FilterRow the step size for the up/down controls of a numeric field is 1. How can I change this to 0.1 (like Step="0.1" in TelerikNumericTextBox)? Everything else (resetting filter, selecting filter operator,...) should work as in the standard implementation.
2 Answers, 1 is accepted
Hi Klaus,
You can use the filter row template to define your own UI and UX (say, define a small Step, Min, Max or other settings) to a numeric textbox. You can find examples of doing something similar in its documentation article: https://docs.telerik.com/blazor-ui/components/grid/templates/filter#filter-row-template.
Regards,
Marin Bratanov
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Hi Marin,
Thank you for your prompt reply.
I managed to get the changed step size and the 'reset filter button' (A). It works like a charm. Is there also an example how to implement the 'select filter operator button' (B)?
Regrads,
Klaus
You can use a dropdownlist, the following article shows how you can bind it to an enum: https://docs.telerik.com/blazor-ui/knowledge-base/dropdown-kb-bind-to-enum, The FilterOperators list is the collection you need, and you may want to filter it out according to the column type (for example, StartsWith or Contains filter is not suitable for a number).
Are there any plans to include something like a 'button with an attached menu' in your Blazor package in the future?
Maybe through this: https://feedback.telerik.com/blazor/1506370-dropdown-container-popup-component-tied-to-an-anchor-for-positioning - I don't know exactly how the API will look like but it should be more customizable than a dropdownlist.
Something else you can consider is the context menu that you can show on any event (such as onclick): https://docs.telerik.com/blazor-ui/components/contextmenu/integration