Igor devor schrieb: > Hi, > > I use IE6. and i have a dojo floatpanel (option > executeScripts="true") that load a page with javascript and evaluate it. > With firefox no problem. > With IE6 i have this error when the floatpanel eval the page. > And with some static html i have reproduce the error, when a float > pane evaluate a javascript with this > > <script type="text/javascript"> > <!-- > //--> > </script> > Ok... the script itself is initialized in a standardized manner, I assume something else is at fault.
Do you use the dojo tag facilities? If yes, move them over to programmatic javascript initialization. We had several issues with dojo tag faclities in the past and hence have moved our own dojo component code to pure programmatic javascript initialisation. I dont have a floating pane initialisation code handy, but this one comes close: http://example.irian.at/example-sandbox-20060915/fisheye.jsf check out the sources the float pane should be something alike var newWidget = dojo.widget.createWidget("FloatingPane",{id="componentid"}, dojo.byId("originaldiv")); Which dojo version do you use?

