I'd like to know if is possible to change the format/mask from an input data field.For instance, if I type 000011 the field automatically show me 000.00-11.
Yes, but you'll need to change the events a little. In the attached prototype, instead of using Substring, we use a condition to detect when the number of characters is a certain amount, and then Concatenate . and -.
Yes, but you'll need to change the events a little. In the attached prototype, instead of using Substring, we use a condition to detect when the number of characters is a certain amount, and then Concatenate . and -.
By verifying I meant to check the data from the field. Instead, check the data only in the end, it could check the data each time I press any key while typing the number.
By verifying I meant to check the data from the field. Instead, check the data only in the end, it could check the data each time I press any key while typing the number.
Sure - using the Substring and Concat functions. Check out the attached prototype to see an example.
Sure - using the Substring and Concat functions. Check out the attached prototype to see an example.
Replies have been locked on this page!