form1.#subform[0].TextField7::exit - (JavaScript, client)
var myVar = TextField7.rawValue;
var myNextVar = myVar.toUpperCase();
TextField1.rawValue = myNextVar;
form1.#subform[0].TextField7::docReady - (JavaScript, client)
xfa.host.setFocus(TextField7);
I'm trying to get the starting location for the cursor on the form to be this textfield and for the user entered text to change to uppercase. It won't work!
Help please!
Views
Replies
Total Likes
You can do this even simpler with
this.rawValue = this.rawValue.toUpperCase();
Views
Replies
Total Likes