Avatar

Level 4

you can convert your textField data to Numeric data and then use toFixed();

var NumericValue = parseFloat( this.rawValue );
app.alert(NumericValue.toFixed());
this.rawValue = NumericValue.toFixed() ;

this.rawValue is my textField data.

Regards--

Chalukya