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

uppercase

1 Answer 52 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Fabio Cirillo
Top achievements
Rank 1
Fabio Cirillo asked on 28 Jun 2013, 09:37 AM
Hello,
is possible in a aspx page write uppercase characters in the fields radtextbox and radcombobox?

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 28 Jun 2013, 10:23 AM
Hi Fabio,

I guess you want the RadTextBox and RadComboBox characters to be rendered in uppercase. Try overriding the default CSS as follows.

CSS:
<style type="text/css">
    input
    {
        text-transform: uppercase !important;
    }
    .riTextBox
    {
        text-transform: uppercase !important;
    }
</style>

Thanks,
Shinu.
Tags
General Discussions
Asked by
Fabio Cirillo
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or