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

RadTextbox upper case

3 Answers 164 Views
Input
This is a migrated thread and some comments may be shown as answers.
benitolopez_sistemas
Top achievements
Rank 1
benitolopez_sistemas asked on 15 May 2010, 03:59 PM
How can I use a radtextbox with an attribute of uppercase in all of the keyboards inputs?

3 Answers, 1 is accepted

Sort by
0
Daniel
Telerik team
answered on 15 May 2010, 05:25 PM
Hello Benito,

Please try the following approach:
<script type="text/javascript">
    function changeCase(sender)
    {
        sender.value = sender.value.toUpperCase();
    }
</script>
<telerik:RadTextBox ID="RadTextBox1" runat="server" onkeyup="changeCase(this)"  />

Best regards,
Daniel
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Aaron
Top achievements
Rank 2
answered on 28 Sep 2010, 08:39 PM
Didn't worked for me, I just copied the code you submitted in a UserControl.
0
Daniel
Telerik team
answered on 01 Oct 2010, 12:37 PM
Hello Aaron,

This code works flawlessly on my end. Can you please provide some more information (browser, version, etc) to help me reproduce the problem?

Best regards,
Daniel
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Input
Asked by
benitolopez_sistemas
Top achievements
Rank 1
Answers by
Daniel
Telerik team
Aaron
Top achievements
Rank 2
Share this question
or