This is a migrated thread and some comments may be shown as answers.

Customised Filterrow

1 Answer 63 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Simon
Top achievements
Rank 1
Simon asked on 17 Dec 2019, 09:57 AM

Is there a good demo example of how to customise a filter row. I would like a filter row which is a combination of input boxs and dropdowns.  GridFilterMode.Row just gives be inputboxes and GridFilterMode.Menu just gives me a dropdown filter. I would like something like the attached with multicheck dropdowns. .

 

 

1 Answer, 1 is accepted

Sort by
0
Tsvetomir
Telerik team
answered on 20 Dec 2019, 07:57 AM

Hi Simon,

The filter widget of the Kendo UI Grid could be modified via the following option:

columns.Bound(p => p.OrderDate).Format("{0:MM/dd/yyyy}").Filterable(f=>f.Cell(cell=> { cell.ShowOperators(false); cell.Template("dateFilter"); }));

Within the handler, the event arguments are set to the element from which the default widget would have been initialized. You could initialize a custom widget similarly to the approach provided in the following example:

https://demos.telerik.com/aspnet-core/grid/filter-menu-customization

Let me know in case additional assistance is needed.

 

Regards,
Tsvetomir
Progress Telerik

Get quickly onboarded and successful with Telerik UI for ASP.NET Core with the dedicated Virtual Classroom technical training, available to all active customers.
Tags
Grid
Asked by
Simon
Top achievements
Rank 1
Answers by
Tsvetomir
Telerik team
Share this question
or