Completed
Last Updated: 17 Nov 2015 16:27 by ADMIN
ADMIN
Peter
Created on: 10 Jul 2013 07:23
Category: GridView
Type: Bug Report
0
FIX. RadGridView - RadDropDownListEditorElement does not allow to select the first item if filter is applied.
Workaround: Use a custom editor and override IsModified method: 
class MyEditor : RadDropDownListEditor 
{
 public override bool IsModified 
{
 get 
{
 return true; 
}
 }
 }

 void radGridViewFilter_EditorRequired(object sender, EditorRequiredEventArgs e) 
{
 if (e.EditorType == typeof(RadDropDownListEditor)) { e.Editor = new MyEditor(); 
}
}
0 comments