I would like to control data being displayed in two non hierarchical RadGrids using one RadDatePicker control. When the OnSelectDateChanged event occurs, I want the two grids to display content for that date only. The two grids use RadGridX_ItemDataBound to color code some of the data when the grids are refreshed.
I was hoping Telerik Rad Controls could invoke two functions or register two functions from one event handler. For example:
OnSelectedDateChanged="Raddatepicker2_SelectedDateChanged1; Raddatepicker2_SelectedDateChanged2". In this logic, Raddatepicker2_SelectedDateChanged1 would call on the server side, SqlDataSource1.SelectCommand and Raddatepicker2_SelectedDateChanged2 would call SqlDataSource2.SelectCommand which have “WHERE” clauses with the selected date. This approach failed. I will appreciate any suggestion or hint.
Thanks,
Baxis