Completed
Last Updated: 19 Feb 2015 06:51 by ADMIN
ADMIN
Dimitar
Created on: 12 Jan 2015 08:38
Category: GridView
Type: Bug Report
0
FIX. RadGridView - When RadTextBoxControlElement is used as permanent editor in the grid there is NulllReference exception, caused by the IME support.
To reproduce:
- Create a custom column that uses RadTextBoxControlElement as permanent editor.
- Add the column to the grid. 
- Scroll the grid so the custom column is not visible.
- Put the the grid in edit mode and change the current cell.  

Workaround:
- Disable the IME support:
public class MyRadTextBoxControlElement : RadTextBoxControlElement
{
    protected override Type ThemeEffectiveType
    {
        get
        {
            return typeof(RadTextBoxControlElement);
        }
    }
    protected override void OnLoaded()
    {
        this.InvalidateMeasure();
    }
}
0 comments