You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Its IE9 specific issue and occurred when enable "Access data source across domain"
To enable settings:
Goto Internet Option > Security > Custom Level > Miscellaneous > Access data source across domain (Make it enable)
Then, refreshing the page will show error:
Unable to get value of property '-js-display': object is null or undefined
i.e
// store display style in details
details.style.display = node.currentStyle['-js-display'] || node.currentStyle.display;
Hint: Somehow currentStyle is not being found within node object
The text was updated successfully, but these errors were encountered:
Hi,
Its IE9 specific issue and occurred when enable "Access data source across domain"
To enable settings:
Goto Internet Option > Security > Custom Level > Miscellaneous > Access data source across domain (Make it enable)
Then, refreshing the page will show error:
Unable to get value of property '-js-display': object is null or undefined
i.e
// store display style in details
details.style.display = node.currentStyle['-js-display'] || node.currentStyle.display;
Hint: Somehow currentStyle is not being found within node object
The text was updated successfully, but these errors were encountered: