Hi ,
I want to implement google like filtering to three level hierarchy (google like filtering to second and third level grid). To implement this
i have tried following code but when i click on combo box to display filtering it displays only loading.... When i try to debug then
it dose not go to "list_ItemsRequested" function in "MyCustomFilteringColumnCS" class file.
I want to implement google like filtering to three level hierarchy (google like filtering to second and third level grid). To implement this
i have tried following code but when i click on combo box to display filtering it displays only loading.... When i try to debug then
it dose not go to "list_ItemsRequested" function in "MyCustomFilteringColumnCS" class file.
protected void RadGrid1_PreRender(object sender, EventArgs e) |
{ |
foreach (GridDataItem dataItem in RadGrid1.MasterTableView.Items) { |
if (dataItem.Expanded) { |
GridTableView gridTableView = (GridTableView)dataItem.ChildItem.NestedTableViews[0]; |
gridTableView.Columns.Clear(); |
foreach (DataColumn dataColumn in ds.Tables[0].Columns) |
{ |
RadGrid.MyCustomFilteringColumn gridColumn = new RadGrid.MyCustomFilteringColumn(); |
gridColumn.DataField = dataColumn.ColumnName; |
gridColumn.HeaderText = dataColumn.ColumnName; |
gridTableView.Columns.Add(gridColumn); |
} |
gridTableView.Rebind(); |
} |
} |
} |