Hello,
I have implemented the Google-like filtering that is demonstrated here.
The problem is that the itemsRequested events of the RadComboBoxes are triggering the RadGrid.NeedDataSource event.
I usually use the following logic to prevent rebinding the RadGrid :
I would like to do something similar in this case, but I do not know how to get a reference to the RadComboBoxes.
Thanks
I have implemented the Google-like filtering that is demonstrated here.
The problem is that the itemsRequested events of the RadComboBoxes are triggering the RadGrid.NeedDataSource event.
I usually use the following logic to prevent rebinding the RadGrid :
| Protected Sub RadGrid1_NeedDataSource(ByVal source As Object, ByVal e As Telerik.WebControls.GridNeedDataSourceEventArgs) Handles RadGrid1.NeedDataSource |
| If Not RadComboBox1.IsCallBack Then |
| ' rebind radgrid |
| End If |
| End Sub |
I would like to do something similar in this case, but I do not know how to get a reference to the RadComboBoxes.
Thanks