Hello!
I donĀ“t know if this is by design or a bug. But if I have a grid with one or more columns that is hidden (not want to display them). The RadFilter still gives the user that choice in the RadFilter function.
Is this the correct behavior? If so how can I programatically hide those hidden columns also for the RadFilter component?
Or is this the way I should do it?
/M
I donĀ“t know if this is by design or a bug. But if I have a grid with one or more columns that is hidden (not want to display them). The RadFilter still gives the user that choice in the RadFilter function.
Is this the correct behavior? If so how can I programatically hide those hidden columns also for the RadFilter component?
Or is this the way I should do it?
protected void RadFilter1_FieldEditorCreated(object sender, RadFilterFieldEditorCreatedEventArgs e) |
{ |
if (e.Editor.FieldName.Equals("BlockValue")) |
{ |
this.RadFilter1.FieldEditors.Remove(e.Editor); |
} |
} |
/M