SGWT: SmartClient Version: SNAPSHOT_v9.1d_2013-12-17/PowerEdition Deployment (built 2013-12-17)
BROWSER: IE 11
PROBLEM: I am trying to use AMCHARTS (a flash widget) in a SmartGWT widget. We are upgrading from an ancient third party GWT wrapper widget that has worked, since now SmartGWT appears to have direct support for Flash with Flashlet. But this doesn't work
THE CODE:
ADDITIONAL INFO:
When I debug through this using Chrome's Javascript debugger, I can see that the Javascript associated with the flash component is being called but it enters into an infinite loop, and hangs, because it cannot find the id to attach the flash component to.
Any help would be greatly appreciated. Are there any simple self contained examples of this that I could look at?
-kornel
BROWSER: IE 11
PROBLEM: I am trying to use AMCHARTS (a flash widget) in a SmartGWT widget. We are upgrading from an ancient third party GWT wrapper widget that has worked, since now SmartGWT appears to have direct support for Flash with Flashlet. But this doesn't work
THE CODE:
Code:
Flashlet flashlet = new Flashlet();
flashlet.setID("swfID_0");
flashlet.setName("swfID_0");
flashlet.setSrc("chart/amstock.swf");
Map params = new HashMap();
params.put("flashvars","&settings_file=" + url +
"&chart_id=swfID_0" );
params.put("wmode", "transparent");
flashlet.setParams(params);When I debug through this using Chrome's Javascript debugger, I can see that the Javascript associated with the flash component is being called but it enters into an infinite loop, and hangs, because it cannot find the id to attach the flash component to.
Any help would be greatly appreciated. Are there any simple self contained examples of this that I could look at?
-kornel