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

[Solved] set numerictextbox background color using javascript

1 Answer 266 Views
Input
This is a migrated thread and some comments may be shown as answers.
Raju Kumar
Top achievements
Rank 1
Raju Kumar asked on 30 May 2008, 09:52 AM
Hi,
  How can i set the numerictextbox background color using javascript.

Thanks.
Raju

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 30 May 2008, 10:42 AM
Hi Raju,

Try setting the backcolor using the CSS class as shown below.

ASPX:
 <telerik:RadNumericTextBox ID="RadNumericTextBox1"  CssClass="Style" runat="server">  
          </telerik:RadNumericTextBox> 
       

 <style> 
     .Style  
     {  
      background-color:Blue;  
     }  
    </style> 


Thanks
Princy.
Tags
Input
Asked by
Raju Kumar
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or