Completed
Last Updated: 04 Jan 2013 09:09 by ADMIN
ADMIN
Anton
Created on: 04 Jan 2013 09:09
Category: GridView
Type: Bug Report
5
FIX. RadGridView - In the ValueChanging event if you set e.cancel = true the cursor will be back at the start of the TextBoxItem.
Work Around:
1. Create custom text box editor.

        public class MyTextBoxEditor : RadTextBoxEditor
        {
            private bool isValueChanging = false;
            private int selectionStart = -1;

            public MyTextBoxEditor()
         
0 comments