Completed
Last Updated: 04 Jun 2021 09:38 by ADMIN
Release R2 2021 SP1 (LIB 2021.2.607)
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 26 Mar 2015 14:35
Category: Editors
Type: Bug Report
0
FIX. RadTextBoxControl - the last entered character is deleted by pressing the Space key when using Korean (Microsoft IME) keayboard

To reproduce: use Korean (Microsoft IME) keayboard this.radTextBoxControl1.ImeMode = System.Windows.Forms.ImeMode.Hangul; Workaround: this.radTextBoxControl1.KeyUp+=radTextBoxControl1_KeyUp; private void radTextBoxControl1_KeyUp(object sender, KeyEventArgs e) { this.radTextBoxControl1.SelectionStart = this.radTextBoxControl1.Text.Length; }

Note: the issue can be also observed in the textbox editor in RadGridView.

0 comments