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:
Example errors
Best Regards
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>
Best Regards
Comment