Hi,
with Infragistics 20.1.104, given an SQL datatype like `numeric(23, 20)`, I'd like to use MaskInput to show an appropriate placeholder.
If I set it to `{LOC}-{double:3.20}`, though, the entire fractional portion gets set to a series of zeroes.
If I set it to `{LOC}-{double:3.19}`, this doesn't seem to occur.
So I think I'm running into some kind of internal limit?
Hello Divya,
sorry for the confusion. Even though my MaskInput has 'double' in it, the underlying data is actually a System.Decimal, which does support this:
> decimal d = 1.12345678901234567890m; > d 1.12345678901234567890 > decimal d = 1.12345678901234567890123m; > d 1.12345678901234567890123
Regardless of whether such precision is actually preserved, though, it is an odd behavior that all decimal places get cut off / floored to zero.
Is there a different MaskInput I should be using?
Hello Soren,
Thank you for contacting. In order to understand the issue i set up a basic sample like this: