I am currently using the 10.3 version of Infragistics UltraGrid in my Windows Application. I have a column in the Grid with the Data Type as Nullable<double>. The Max value that I am looking forward to store the same the field is 999,999,999,999,999,999,999,999,999,999.00. I am trying to set the same in the Mask Input as {double:-30.0}. But, I am unable to open the screen when the form is loaded. the exception says that the value is too small or large for the column.
Kindly assist me for the same.
Regards,
Ritesh
Hello Ritesh,
This is a limitation by the 'System.Decimal' type. Please take a look at the following link and quote from it:
http://msdn.microsoft.com/en-us/library/system.decimal.aspx
"The scaling factor is implicitly the number 10, raised to an exponent ranging from 0 to 28"
So you could try and set your mask to {double:-28.0} and see if it helps.
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.