Greetings,
I'm using RadGrid within a Sharepoint webpart. On the details table I have two rows set with the following:
I'm using RadGrid within a Sharepoint webpart. On the details table I have two rows set with the following:
boundColumn = New GridBoundColumn() |
boundColumn.DataField = "Field" |
boundColumn.HeaderText = "Text" |
boundColumn.AutoPostBackOnFilter = True |
boundColumn.CurrentFilterFunction = GridKnownFunction.StartsWith |
boundColumn.HeaderStyle.ForeColor = White |
boundColumn.FilterControlWidth = Unit.Pixel(25) |
.Columns.Add(boundColumn) |
All the properties get set during runtime except for FilterControlWidth. Any idea why it wouldn't get set?