disabling autocapitalize on input form

Is there a way to disable autocapitalize and autocomplete on form text elements?
I tried attributes as in my example, without success.
Your help would be appreciated.

       { 
            view:"text",
            id:"frmUsername", 
            name:"frmUsername", 
            label:"Your user name",
            value:"",
            attributes:[
                {autocorrect:"off"},
                {autocapitalize:"off"}
                ]
        },

Hi,

please check the correct syntax for the attributes property, it’s value should be hash, not plain array: http://webix.com/snippet/6f144e5a

If it still does not work, note that the browser support for that feature is limited, only Safari (IOS5) and Chrome 43+ (Android).

Thanks for the quick response.
I thought it must have been stupid syntax mistake - thanks for putting me on the right track. It is the iOS and android devices that have this ‘problem’.