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

rad numeric text box value get bold

4 Answers 165 Views
Input
This is a migrated thread and some comments may be shown as answers.
Jiju
Top achievements
Rank 1
Jiju asked on 24 Apr 2012, 06:01 AM
Hi,
when entering a value in rad text box it shows in normal font, and when changing the focus, the value gets bold.
How can i avoid the behavior of changing the font weight to bold when changing the focus in sharepoint site page.
I am using telerik Q1 2012 ( 2012_01_215)


thanks
Jiju

4 Answers, 1 is accepted

Sort by
0
Tsvetoslav
Telerik team
answered on 27 Apr 2012, 06:11 AM
Hi Jiju,

That's not the expected behavior neither in a normal aspx nor in SP 2010. I suspect you have some css style being applied to the text in the input dom element. Try inspecting is in the browser with FireBug or IE developer toolbar and override it in your implementation.

Greetings,
Tsvetoslav
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Jiju
Top achievements
Rank 1
answered on 27 Apr 2012, 06:25 AM
In my css class, in order to change the font weight of span to bold, i have declared as below
span
 {
    font-family:Verdana;
    font-size:8pt;    
    font-weight:bold;
 }
but the font weight can't be changed to normal since it is mandatory for all span in the site.
how can we fix this issue?
0
Accepted
Tsvetoslav
Telerik team
answered on 27 Apr 2012, 10:31 AM
span.riTextBox , input.riTextBox 
{
   font-weight: normal;
}


All the best,
Tsvetoslav
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Jiju
Top achievements
Rank 1
answered on 27 Apr 2012, 11:24 AM
I have override the style using below code
span.riDisplay , input.riDisplay
 {
    font-weight: normal;
 }
and it works as expected.

thanks for your reply.
Tags
Input
Asked by
Jiju
Top achievements
Rank 1
Answers by
Tsvetoslav
Telerik team
Jiju
Top achievements
Rank 1
Share this question
or