Hello,
I'm trying to prevent numbers like:
500.10
I want only amounts like:
500
entered.
I setup the RadNumericTextbox with:
DecimalDigits="0"
DataType="System.Int32"
MinValue="0"
And even though I have this, it still allows 500.10. Also, ValueChanged seems to fire after the RadNumericTextBox adjusts the value to 500. So User enters 500.10, the ValueChanged client-side event fires, and the value is adjusted to 500 in RadNumericTextBox.
Is there a way to get the value to adjust before this event fires, or is there a better event to tap into?
Thanks.
I'm trying to prevent numbers like:
500.10
I want only amounts like:
500
entered.
I setup the RadNumericTextbox with:
DecimalDigits="0"
DataType="System.Int32"
MinValue="0"
And even though I have this, it still allows 500.10. Also, ValueChanged seems to fire after the RadNumericTextBox adjusts the value to 500. So User enters 500.10, the ValueChanged client-side event fires, and the value is adjusted to 500 in RadNumericTextBox.
Is there a way to get the value to adjust before this event fires, or is there a better event to tap into?
Thanks.