How can I present the partial form as asterisk data during the viewing and printing of forms?

I have forms that will be generated and sent by e-mail. When I need to do is data capture to say a number of SS. Data will be entered as 123-45-6789 after entering the data, I want to display the field as *-*-6789. What is the best way to go at that?

I'm not sure this will do the trick.  Unless I'm missing something, the password field you cannot change how it is displayed. It always shows all asterisks.

I also played with the view to a text field model, but it does not a ' *' to be substituted for a character so that only the first two sections of the SSN show asterisks.

If all else fails, place a text field on the form and add the script in FormCalc next to the Exit of the field event:

If (Len ($) == 9) then

$. format.picture

= concat ("text {" ' *-*-', right ($ 4), "" ""} "")

endif

The above should change the visual appearance of the field but leaves the actual value intact.

In addition, I put the editing model "text {999?". 99? 9999}. "  This allows users to enter "123456789", "123-45-6789" or "123-45-6789".  Be aware, however, that the data is stored without dashes, for example "123456789".  If this is not acceptable, then you will have to play with the editing model and probably change the test Len in the script.

Tags: Adobe LiveCycle

Similar Questions

Maybe you are looking for