I'm need disappear value in filter when filter changing.
Example:
void RadGridViewQuestions_FilterChanging(object sender, GridViewCollectionChangingEventArgs e)
{
e.Cancel = true;
}
When this event calls GridViewCheckBoxColumn and above specified method is fulfilled - value in the filter does not disappear. If this event is called by others Columns after method performance - values disappear.
Example:
void RadGridViewQuestions_FilterChanging(object sender, GridViewCollectionChangingEventArgs e)
{
e.Cancel = true;
}
When this event calls GridViewCheckBoxColumn and above specified method is fulfilled - value in the filter does not disappear. If this event is called by others Columns after method performance - values disappear.