Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Won't Fix
-
Affects Version/s: 2.0-Alpha1
-
Fix Version/s: 2.0-Alpha2, 2.0.0
-
Component/s: Bridge
-
Labels:None
-
Environment:browser
Description
Error occurirng in IE when using Autocomplete :
Message: 'Ice.ElementModel.Element' is null or not an object
Line: 8906
Char: 13
Code: 0
URI: http://localhost:8080/component-showcase/javax.faces.resource/ice-extras.js.jsf
Message: 'Ice.ElementModel.Element' is null or not an object
Line: 8906
Char: 13
Code: 0
URI: http://localhost:8080/component-showcase/javax.faces.resource/ice-extras.js.jsf
Issue Links
- blocks
-
ICE-4458 create component-showcase sample for compat version of ICEfaces-2
- Closed
Avoided to use Ice.ElementModel object since its definition is not present in Glimmer anymore (used to be in 1.8.*). The alternative solution was to use a pseudo URL for the 'src' of the iframe. The 'javascript:...' pseudo URL allows you to define the content of the page right inside in the URL avoiding thus the need for having a reference to a blank page.
Anyway, the previous solution was way to ugly since it was drilling down inside bridge's code to lookup a variable that contained a URL. This URL was then used to calculate the context path which in turn allowed for calculating an absolute path to a blank page.....