Announcement

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

    After Firefox 48 update - Smartclient shows only white page with js-errors

    Hi there,
    Firefox 48 is released and we have customers, which already have updated ther default browser (Firefox) to the newest version.
    After upgrading to the latest version the browser does display a white page with many js-errors

    This happens with:
    Our released version of smartclient: "v10.1p_2016-04-28/Pro Deployment"
    With our version in staging: "v11.0p_2016-06-28/Pro Deployment"
    And our version in development: "v11.0p_2016-07-17/Pro Deployment"
    And also in the latest nightly: "v11.0p_2016-08-01/Pro Deployment"

    This bug is affecting all our users, who are working with the latest ersion Firefox. The number of those users will increase due to the auto-update of firefox in the next few days. So we need a fix as soon as possible.

    Simple code for reproduction:
    Code:
    <!DOCTYPE html>
    <html>
    <head>
    <title>test</title>
    <SCRIPT SRC="/isomorphic/system/modules/ISC_Core.js"></SCRIPT>
    <SCRIPT SRC="/isomorphic/system/modules/ISC_Foundation.js"></SCRIPT>
    <SCRIPT SRC="/isomorphic/system/modules/ISC_Containers.js"></SCRIPT>
    <SCRIPT SRC="/isomorphic/system/modules/ISC_Grids.js"></SCRIPT>
    <SCRIPT SRC="/isomorphic/system/modules/ISC_Forms.js"></SCRIPT>
    <SCRIPT SRC="/isomorphic/system/modules/ISC_DataBinding.js"></SCRIPT>
    <SCRIPT SRC="/isomorphic/system/modules/ISC_Drawing.js"></SCRIPT>
    <SCRIPT SRC="/isomorphic/system/modules/ISC_Charts.js"></SCRIPT>
    <SCRIPT SRC="/isomorphic/system/modules/ISC_Calendar.js"></SCRIPT>
    <SCRIPT SRC="/isomorphic/skins/Enterprise/load_skin.js"></SCRIPT>
    <head>
    <body>
    
    
    <script>
    isc.DynamicForm.create({
        "ID" : "searchform",
        "submit" : function () {
            console.log("enter pressed");
            console.log(theField.getValue());
        },
        "width" : "100%",
        "autoDraw" : false,
        "padding" : 4,
        "hideUsingDisplayNone" : false,
        "numCols" : 5,
        "autoFocus" : true,
        "selectOnFocus" : true,
        "itemHoverDelay" : 1200,
        "saveOnEnter" : true,
        "readOnlyDisplay" : "static",
        "fields" :
        [{
                "ID" : "theField",
                "name" : "theField",
                "title" : "text",
                "type" : "text",
            }
        ],
        "values" : {
            "theField" : "test"
        }
    })
    </script>
    </body>
    </html>
    Example errors


    Best Regards
    Last edited by SimonF; 3 Aug 2016, 05:37.

    #2
    We've resolved this - please see this post where we've followed up on thread reporting a similar problem.

    Comment


      #3
      Sorry for late responding.
      Thanks, this was indeed the fix. We have deployed the latest nightly after it was downloadable.

      Comment

      Working...
      X