Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    IE errors in deployment

    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:

    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])
                   
            }
    });
    We checked that all the files are the same with a working machine and are pretty much out of ideas besides probable connection problems?

    #2
    Connection problems is about all we can suggest.

    The only way to get an unterminated string constant in ISC_Grid.js would seemingly be to download only half the file and have the browser somehow think it got the whole file.

    The second failure about isc.DataRangeItem seems to indicate the entire ISC_Form.js file failed to load.

    Comment


      #3
      Ok thanks for verifying.

      Comment

      Working...
      X