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

event on filtering

1 Answer 84 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Christian
Top achievements
Rank 1
Christian asked on 17 Mar 2009, 07:23 AM
Is there any event which I can use on filtering?

I have 3 RadGrids with the same data and with dropdownlist-filtering:
http://www.telerik.com/help/aspnet/grid/grdfilteringwithdropdownlist.html

Now I need to synchronie the filtering in theses 3 RadGrids.

Wahr is the way to go?

Thanks for any assistance!

Christian

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 17 Mar 2009, 09:28 AM
Hi Christian,

In the above help article the FireCommand event is raised in the SelectedIndexChanged event of the DropDownList. I think you can use  the same event name for all the DropDownLists in all the Grids.

CS:

dropdownlist1.SelectedIndexChanged += 
new EventHandler(list_SelectedIndexChanged); 
dropdownlist2.SelectedIndexChanged += new EventHandler(list_SelectedIndexChanged); 
dropdownlist3.SelectedIndexChanged += new EventHandler(list_SelectedIndexChanged); 
 


Thanks
Shinu
Tags
Grid
Asked by
Christian
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or