autocomplete="off"

I don’t see anywhere in the documentation how to turn autocomplete=“off”. I need this for the entire form, so if there is a way to set it using the “settings” type that would be great. If not, I need the ability to set it for each input.

Try this:

myForm.forEachItem(function(id){ if (myForm.getItemType(id) == "input") { myForm.getInput(id).autocomplete = "off"; } })
But you need to be sure that items are loaded into form