Answered
I have entered default text on the value tab of my text field. I prefer these "hints/examples" over mouse pointer tooltips as this form most typically is tabbed thru. The default text can be deleted and entered over, however, I'm wondering if "upon entry" the default text can be automatically deleted (so that the users don't leave the examples there). I do not want this field to be a mandatory fill field, however.
Thanks for any assistance!
in the event myform.textfield::enter,
if (textfield.rawValue == "demotest")
{
textfield.rawValue = "";
}
- akshay