Hello,
Can anyone point me to a method to achieve the following:
Using LiveCycle ES2, I want to set certain text fields to have no border as a default.
When the user enters text into a field in the finished form, I want to turn on a border for that field.
When there is no text in that field, I want the border to turn off.
Is this possible? If so, does anyone have any suggestions?
Thanks!
Solved! Go to Solution.
Views
Replies
Total Likes
just put in the exit event of the textfield (in formcalc):
if ($.isNull == 0) then
$.border.edge.presence = "visible"
else $.border.edge.presence = "hidden"
endif
Views
Replies
Total Likes
just put in the exit event of the textfield (in formcalc):
if ($.isNull == 0) then
$.border.edge.presence = "visible"
else $.border.edge.presence = "hidden"
endif
Views
Replies
Total Likes
Excellent, thank you, works great.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies