Question
Can the RadNumericTextbox be configured support a precision greater than 15 decimal places?
I can see that JavaScript can't, for the Number class, which I'm certain the RadNumericTextbox uses for client side validation.
Scenario
I have a RadGrid that pulls data from a data set populated by a SQL table that contains columns of type numeric(38,20). That level of precision is required in my application.
Workaround
Before I set the datasource of the RadGrid, I change all the columns of type Decimal in my dataset to be type String.
Can the RadNumericTextbox be configured support a precision greater than 15 decimal places?
I can see that JavaScript can't, for the Number class, which I'm certain the RadNumericTextbox uses for client side validation.
Scenario
I have a RadGrid that pulls data from a data set populated by a SQL table that contains columns of type numeric(38,20). That level of precision is required in my application.
Workaround
Before I set the datasource of the RadGrid, I change all the columns of type Decimal in my dataset to be type String.