Some users are getting the errors below and we are not entirely sure why. We are hoping you could give us some ideas on why such errors would occur:
We checked that all the files are the same with a working machine and are pretty much out of ideas besides probable connection problems?
Code:
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MS-RTC LM 8)
Timestamp: Thu, 26 Jul 2012 14:19:22 UTC
Message: Unterminated string constant
Line: 2304
Char: 127
Code: 0
URI: http://ekyomzzdw01.vzbi.com/ordering/isomorphic/system/modules/ISC_Grids.js?v=65149 [^]
Message: 'isc.DateRangeItem' is null or not an object
Line: 40
Char: 1
Code: 0
URI: http://ekyomzzdw01.vzbi.com/ordering/isomorphic/system/modules/custom/CWCustomScripts.js?v=65149 [^]
The line in CwCustomScripts is:
isc.DateRangeItem.addProperties({
change: function(form, item, value) {
var startDate = value.start;
var endDate = value.end;
if(endDate!=null){
if(startDate!=null){
if(startDate.getTime() > endDate.getTime()){
isc.warn(window.cwUE0328);
return false;
}
}
}
return this.Super("change", [form, item, value])
}
});
Comment