Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
Hi,
Is there a way in LiveCycle ES2 to clear the default value of a text field when a user clicks in/on the actual field? Similar to onFocus javascript event. Any suggestions/examples would be greatly appreciated. Thank you.
In your enter event for that field add code to clear the field.
this.rawValue = "";
If you want to only clear the field when the default value is present:
if (this.rawValue == "default value") this.rawValue = "";
Views
Likes
Replies