This is a migrated thread and some comments may be shown as answers.

TextBox and ALT

6 Answers 147 Views
TextBox
This is a migrated thread and some comments may be shown as answers.
Krzysztof
Top achievements
Rank 1
Krzysztof asked on 02 Apr 2013, 10:15 AM
Hello,

Maybe someone know how to turn off shortcut for right ALT in TextBox Control.
In Poland we use it with special characters like "śćżźą" . I check attribute EnableKeyMap = False, but still cant use it.
It work like ctrl.

6 Answers, 1 is accepted

Sort by
0
Anton
Telerik team
answered on 05 Apr 2013, 10:25 AM
Hello Krzysztof,

Thank you for writing.

I tested both RadTextBox and RadTextBoxControl with Polish (programmers) keyboard I was able to enter the mentioned characters with the AltGr key. The only issue that I was able to reproduce was that in RadTextBoxControl if you type more that one "ą" it will delete the content of the control. This case it added in our Public Issue Tracking System and you can track its status here: http://www.telerik.com/support/pits.aspx#/public/winforms/14697

Because of the issue, I would suggest that you use RadTextBox in your application to allow typing in Polish characters. 

Attached video demonstrates how I am typing polish chars in both controls while holding right Alt. 

I hope this helps. 

All the best,
Anton
the Telerik team
WinForms Q1 2013 boasts PivotGrid, PDF Viewer, Chart enhancements and more. Check out all of the latest highlights.
0
Krzysztof
Top achievements
Rank 1
answered on 08 Apr 2013, 07:31 AM
Hi,

Which version of telerik you use in this test?. (My version : 2012.2.912.20)
The texbox work great, but I check that only Text Box Control has this problem.
Evenmore, I download your example of RadControl for WinForms and there is the same problem.
0
Anton
Telerik team
answered on 10 Apr 2013, 02:03 PM
Hello Krzysztof,

Thank you for writing back.

When we are responding to forum thread we always providing solution tested with the last version (currently 2013.1 321) unless you specify the version that you use.

However I tested RadTextBox and RadTextBoxControl with version 2012.2.912.20 and I can confirm that there is issue with RadTextBoxControl while typing Polish chars. However, this issue is already resolved in version (2012.3.1017). So the solution in your case is to use RadTextBox, instead of RadTextBoxControl or to upgrade to our latest release.

I hope this information helps. Let me know if you have any additional questions.

Regards,
Anton
the Telerik team
WinForms Q1 2013 boasts PivotGrid, PDF Viewer, Chart enhancements and more. Check out all of the latest highlights.
0
Krzysztof
Top achievements
Rank 1
answered on 11 Apr 2013, 07:10 AM
Hi,

Thank you very much for verification.

Regards,
Chris
0
Jacek
Top achievements
Rank 1
answered on 30 Jan 2015, 02:22 PM
The problem still exists. We are using Telerik Q2 2014, the test was made on clean project (one form with RadTextBoxControl). Pressing left alt + a on RadTextBoxControl cleans text on RadTextBoxControl. Not on second attempt, just on first. We are using RadTextBoxControl for autocomplete, RadTextBox do not have autocomplete, so we don't want to use RadTextBox. Any chance to fix this failure?

Best Regards
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 04 Feb 2015, 10:46 AM
Hello Jacek,

Thank you for contacting us.

You can track the issue progress , subscribe for status changes and add your vote/comment to it on the following link - feedback item. We will do our best to address it in the upcoming release.

You can use RadTextBox instead. Here is a sample code snippet, demonstrating how to enable to default auto-complete functionality for the RadTextBox:
this.radTextBox1.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
this.radTextBox1.AutoCompleteSource = AutoCompleteSource.CustomSource;
TextBox tb = this.radTextBox1.TextBoxElement.TextBoxItem.HostedControl as TextBox;
tb.AutoCompleteCustomSource.AddRange(
    new string[]
    {
        "one",
        "two",
        "three"
    })
;

I hope this information helps. Should you have further questions, I would be glad to help.

Regards,
Dess
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
TextBox
Asked by
Krzysztof
Top achievements
Rank 1
Answers by
Anton
Telerik team
Krzysztof
Top achievements
Rank 1
Jacek
Top achievements
Rank 1
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or