Hi
Given the code below, when the Grid is rendered, there is no filter icon on the column. Can you tell me what else I need to do to get the filter icon (therefore enabling filtering) to appear on a dynamic column.
Thanks
P
Given the code below, when the Grid is rendered, there is no filter icon on the column. Can you tell me what else I need to do to get the filter icon (therefore enabling filtering) to appear on a dynamic column.
| Dim UDFCellStyle As Windows.Style = Me.FindResource("UDFCellViewStyle") |
| For Each UDFItem In Me.CMXEvent.UDFItems |
| Dim UDFColumn As New Telerik.Windows.Controls.GridViewDataColumn |
| UDFColumn.CellStyle = UDFCellStyle |
| UDFColumn.HeaderText = UDFItem.UDF.Name |
| UDFColumn.IsFilterable = True |
| UDFColumn.DataContext = UDFItem |
| Me.grdMembers.Columns.Add(UDFColumn) |
| Next |
Thanks
P