TypeError: form.elements.autoVideo is undefined in filter.j
Posted: Sat Nov 02, 2013 7:25 pm
I was getting this error whenever clicking Filters in ZM - Console. Using Ubuntu 12.04 LTS
The error is in /zm/skins/classic/views/js/filter.js. I saw no reference to this error anywhere.
To eliminate the errors i modified the file as follows by testing for option settings in the updateButtons function.
This is probably not a proper fix but it works for me. Is this a problem that affects other filter functions.
I am thinking my son could use this system so I am trying to check it out.
if ( typeof ZM_OPT_FFMPEG !== "undefined" && form.elements['autoVideo'].checked )
canExecute = true;
if ( typeof ZM_OPT_UPLOAD !== "undefined" && form.elements['autoUpload'].checked )
canExecute = true;
if ( typeof ZM_OPT_EMAIL !== "undefined" && form.elements['autoEmail'].checked )
canExecute = true;
if ( typeof ZM_OPT_MESSAGE !== "undefined" && form.elements['autoMessage'].checked )
canExecute = true;
The error is in /zm/skins/classic/views/js/filter.js. I saw no reference to this error anywhere.
To eliminate the errors i modified the file as follows by testing for option settings in the updateButtons function.
This is probably not a proper fix but it works for me. Is this a problem that affects other filter functions.
I am thinking my son could use this system so I am trying to check it out.
if ( typeof ZM_OPT_FFMPEG !== "undefined" && form.elements['autoVideo'].checked )
canExecute = true;
if ( typeof ZM_OPT_UPLOAD !== "undefined" && form.elements['autoUpload'].checked )
canExecute = true;
if ( typeof ZM_OPT_EMAIL !== "undefined" && form.elements['autoEmail'].checked )
canExecute = true;
if ( typeof ZM_OPT_MESSAGE !== "undefined" && form.elements['autoMessage'].checked )
canExecute = true;