Hello everyone. I've been trying to find a nice way to format a field
while the user is typing.For example:Raw input: 123456Expected Format:
123.456So, when the user types 1234 it should instantly change to
1.234I've juggled a bunch of hacky workarounds such as unfocusing and
re-focusing the field but this leaves the field's text selected. Another
thing I tried was to simply set the rawValue of the input to a formatted
version of the text, but nothing happens (I'm guessing LiveCycle
Designer dis...