set_valueTop
void set_value(float _value)
Set the value for textbox.
Show/Hide Code
<script type="text/javascript">
function foo()
{
var txtAge = myform_manager.get_control("txtAge");
txtAge.set_value(10);
}
</script>
Supported from version: 1.0.0.0
get_valueTop
float get_value()
Get the input text of textbox.
Show/Hide Code
<script type="text/javascript">
function foo()
{
var txtAge = myform_manager.get_control("txtAge");
alert(txtAge.get_value());
}
</script>
Supported from version: 1.0.0.0