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

[Solved] Set MaxValue using JS

1 Answer 209 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Marlou
Top achievements
Rank 1
Marlou asked on 08 Jun 2009, 08:19 AM
Is it possible to set the maxvalue of a radnumerictextbox in JS? And if so, how can i do that?

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 08 Jun 2009, 11:00 AM
Hello,

You can try out the following code to set the maximum value of the RadNumericTextBox :
js:
var numericTextbox = $find("<%= RadNumericTextBox1.ClientID %>"); 
numericTextbox.set_maxValue(100); 

Thanks
Princy.
Tags
Grid
Asked by
Marlou
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or