Expand my Community achievements bar.

Text Field Appearance

Avatar

Former Community Member
Hi all,



In my form there are several text box fields, my problem is whenever I print the form - the input text shown in BOX (example the subject Field in this thread - you can see a box surrounded with the text) how to make not to show the box when I print. I have tried the PRESENCE option but not helped.



Appearance box shows the following options

None, Underline, Solid, Sunken - but no option print without the border.



Please help.

I use LiveCycle Designer 8
3 Replies

Avatar

Former Community Member
Hello



There will be some scripting. THe proper way to do it is:

1. New Form

2. Save it as dynamic.

3. Add a script to the Field using JavaScript and prePrint event. Paste it:

this.ui.textEdit.border.presence = "invisible";

4. It works



Basicly, you are probably reffering to wrong presence parameter. You should apply it to textEdit.border and not this.border b/c the second one is the box sarrounding the caption and the actial text field.



Here you have a form I used:

http://oceanic.wsisiz.edu.pl/~kordulas/ftp/formularze/tests/dynamic_border.pdf



Do not hestitate to ask me another Qs.

kordulasinski.krzysztof@gmail.com

Avatar

Former Community Member
Hi,



Thanks for your info, but my in my form save as option shows only



Adobe 7 or Adobe 8 Static. No Dynamic save



Please help



Rgds

Avatar

Former Community Member
have you tried this script with a static form? Please try.