Hello,
I am developing a page with telerik RadGrid and the filtering feature is not working. I enable the filtering at grid an table level but it just execute the rebind action without filtering.
To fill the table I am using the NeedDataSource mode. What I am not sure is if the data stay attached to the GridItem and if that could be the problem.
This is the event that just get the DataSource from a service connecting to a DAO:
I am also using a Template column with particular behaeviour but I am not enableing filter on this column.
Thanks,
Cristian.
I am developing a page with telerik RadGrid and the filtering feature is not working. I enable the filtering at grid an table level but it just execute the rebind action without filtering.
To fill the table I am using the NeedDataSource mode. What I am not sure is if the data stay attached to the GridItem and if that could be the problem.
This is the event that just get the DataSource from a service connecting to a DAO:
| protected void MaterialsGrid_NeedDataSource(object source, GridNeedDataSourceEventArgs e) |
| { |
| MaterialsGrid.DataSource = orderService.GetSalesOrderItemsBySector(SessionService.CurrentSectors); |
| } |
I am also using a Template column with particular behaeviour but I am not enableing filter on this column.
Thanks,
Cristian.