Disable iOS autocomplete and autocapitalize

Hi,

I would like to disable the iOS autocomplete and autocapitalize for a text input. Unfortunately there doesn’t appear to be this option in the DHTMLx framework and there are no clear IDs I can use to get the element after the view has been rendered.

Can you suggest how this might be done?

Thanks,
James

Ok, should have read the docs a little more thoroughly. You can do it like so:

$$(‘USERNAME’).getInput().setAttribute(“autocomplete”, “off”);
$$(‘USERNAME’).getInput().setAttribute(“autocapitalize”, “off”);