Details

    • Type: Bug Bug
    • Status: Resolved
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: BridgeIt 1.0
    • Fix Version/s: 1.3.1
    • Component/s: Faces
    • Labels:
      None
    • Environment:
      jsf 2 icemobile IE8

      Description

      will attach avi file from customer, but so far cannot reproduce this. According to user, functionality is not affected and js error only occurs on page load.

      Message: Type mismatch.
       
      Line: 930
      Char: 9
      Code: 0
      URI: http://l1735803:7271/cpc-mi/javax.faces.resource/bridge.uncompressed.js.jsf?ln=ice.core&v=3_3_0_140210

        Activity

        Hide
        Judy Guglielmin added a comment -

        Problem stems from having ice.onLoad on icemobile page...

        <script type="text/javascript">
        ice.onLoad(setUserClientTimeZoneOffset('hiddenForm', true));
        </script>

        Even if you took our specific callback out, just by having ice.onLoad in there causes the js error in IE8.

        Show
        Judy Guglielmin added a comment - Problem stems from having ice.onLoad on icemobile page... <script type="text/javascript"> ice.onLoad(setUserClientTimeZoneOffset('hiddenForm', true)); </script> Even if you took our specific callback out, just by having ice.onLoad in there causes the js error in IE8.
        Hide
        Mircea Toma added a comment -

        Unless setUserClientTimeZoneOffset function returns a function when invoked the inline script will have to be modified as follow:

        <script type="text/javascript">
           ice.onLoad(function() {
              setUserClientTimeZoneOffset('hiddenForm', true);
           });
        </script>
        
        Show
        Mircea Toma added a comment - Unless setUserClientTimeZoneOffset function returns a function when invoked the inline script will have to be modified as follow: <script type= "text/javascript" > ice.onLoad(function() { setUserClientTimeZoneOffset('hiddenForm', true ); }); </script>
        Hide
        Judy Guglielmin added a comment -

        modified call to ice.onLoad fixes issue.

        Show
        Judy Guglielmin added a comment - modified call to ice.onLoad fixes issue.

          People

          • Assignee:
            Mircea Toma
            Reporter:
            Judy Guglielmin
          • Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: