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

Check box filter in ASP.NET MVC

1 Answer 41 Views
Grid
This is a migrated thread and some comments may be shown as answers.
rak
Top achievements
Rank 1
rak asked on 28 Feb 2018, 09:54 AM

Hi friends, I have got 4 records in the first filter (multi check boxes) attempt, now I want to filter in those 4 records for the second time.How to get this?Please help.

My code-

  @(Html.Kendo().Grid(Model).Name("grid").Columns(column =>
                                                  {                                                     
                                                      column.Bound(x => x.ProductID).Filterable(ftb => ftb.Multi(true).Search(true));
                                                      column.Bound(x => x.RackID).Filterable(ftb => ftb.Multi(true).Search(true));                                         
                                                      column.Bound(x => x.ProductName).Filterable(ftb => ftb.Multi(true).Search(true));
                                                      column.Bound(x => x.Price).Filterable(ftb => ftb.Multi(true).Search(true));
                                                  })
                     .Pageable().Sortable().Filterable().Resizable(resize => resize.Columns(true))
                     .DataSource(dataSource => dataSource.Ajax().ServerOperation(false).Model(model => model.Id(p => p.ProductID))
                     )                   
                    )

1 Answer, 1 is accepted

Sort by
0
Viktor Tachev
Telerik team
answered on 02 Mar 2018, 09:46 AM
Hello Rak,

I am not completely sure I understand the functionality you would like to implement. Would you elaborate in more detail on what is the behavior you are looking for? What are the requirements and what should be the expected result?

Having better understanding of your goal will enable us to provide more to-the-point-suggestions on how you can implement it.

Regards,
Viktor Tachev
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
Grid
Asked by
rak
Top achievements
Rank 1
Answers by
Viktor Tachev
Telerik team
Share this question
or