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

Problem on Numeric Text box

1 Answer 68 Views
Input
This is a migrated thread and some comments may be shown as answers.
vijay
Top achievements
Rank 1
vijay asked on 04 Feb 2011, 07:20 AM
hi all..
    How to change the font color of numerik  text box?

and how to get the minimum and maximum Value from numerik text box by Java script.(Here i have given the minimum and maximum value)

Please help

Thanks in advance

1 Answer, 1 is accepted

Sort by
0
Daniel
Telerik team
answered on 04 Feb 2011, 08:56 AM
Hello Vijay,

Straight onto your questions:

How to change the font color of numerik  text box?
<telerik:RadNumericTextBox runat="server" ID="RadNumericTextBox1">
    <EnabledStyle ForeColor="Blue" BackColor="Aquamarine" />
</telerik:RadNumericTextBox>

and how to get the minimum and maximum Value from numerik text box by Java script.(Here i have given the minimum and maximum value)
var ntb = $find('<%= RadNumericTextBox1.ClientID %>');
var minValue = ntb .get_minValue();
var maxValue = ntb .get_maxValue();

Regards,
Daniel
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Input
Asked by
vijay
Top achievements
Rank 1
Answers by
Daniel
Telerik team
Share this question
or