I have written a file upload implementation that works just fine on Firefox, but is failing on IE8. I have followed several posts regarding creating this upload that involves an iframe, UploadItem, HiddenItem with callback name, and Javascript implementation of the callback.
When I submit my form, the javascript error I get on IE8 is "Object doesn't support this property or method" from ISC_Forms.js Line: 492, Char: 63. The line referenced is below.
Is this a known issue? Is there a particular object I cannot use on IE8? Will an upgrade fix this (we are on SmartGWT 2.0)?
When I submit my form, the javascript error I get on IE8 is "Object doesn't support this property or method" from ISC_Forms.js Line: 492, Char: 63. The line referenced is below.
Code:
var _1=this.getForm();if(!_1)return;if(_1.action!=this.action)_1.action=this.action;try{return _1.submit()}catch(e){this.logWarn("Form submission was unsuccessful. In some browsers this can occur when "+"an upload item is present and has an invalid value.");this.formSubmitFailed()}}
Comment