To reproduce:
Please run the sample project and follow the steps from the gif file.
Workaround:
private void radGridView1_SizeChanged(object sender, EventArgs e)
{
this.radGridView1.MasterTemplate.Refresh();
}
public class Grid : RadGridView
{
public override string ThemeClassName
{
get
{
return typeof(RadGridView).FullName;
}
}
protected override void OnResize(EventArgs e)
{
object value = null;
if (this.ActiveEditor != null)
{
value = this.ActiveEditor.Value;
}
base.OnResize(e);
if (value != null && this.CurrentCell != null)
{
this.CurrentCell.Value = value;
}
}
}