Excuse my newb questions... but I am having a hard time understanding where to actually place my piece of javascript to run.
I am wanting to check if the field is full then tab to the next field but its not working...
I have right clicked on the field > clicked properties > clicked actions tab > set my trigger to on focus > clicked add > and typed up my javascript, but its not working!
Any ideas?
here is my code:
if(event.fieldFull) {
app.alert("HEY!");
}
"Set to true when the user attempts to enter text that does not fit in the field due to either a space limitation (the Field object property doNotScroll is set to true) or the maximum character limit (the Field object property charLimit is set to a positive value). When fieldFull is true, event.changeEx is set to the entire text string the user attempted to enter and event.change is the text string cropped to what fits within the field.
"Only available in keystroke events for text fields."
So you need to place the script in the 'Custom keystroke script field' on the 'Format' tab and select the 'Custom' option to get to the custom keystroke script and format script options.
George Kaiser