veronicanascente

Members
  • Content count

    7
  • Joined

  • Last visited

About veronicanascente

  • Rank
    Forum Newbie
  1. Problem With Windowmode

    Hi, It doesn’t work. I think that the windowMode doesn’t work because I saw the code that the browser generates and the wMode=”window”. I don’t know how to make the windowMode works. This is the code that the browser generates in my sample ( this code is equals as IE as Firefox): <div align="center"> <!-- START Code Block for Chart chartTest1--> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="700" height="300" name="chartTest1" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">'>http://www.macromedia.com/go/getflashplayer"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="/test/swf/fusionCharts/Column3D.swf" /> <param name="quality" value="high" /> <param name="wMode" value="window" /> <param name="bgcolor" value="" /> <param name="FlashVars" value="&chartWidth=700&chartHeight=300&debugMode=0&dataURL=null&scaleMode=&lang=" /> <embed src="/test/swf/fusionCharts/Column3D.swf" FlashVars="&chartWidth=700&chartHeight=300&debugMode=0&dataURL=null&scaleMode=&lang=" src="/test/swf/fusionCharts/Column3D.swf" quality="high" width="700" height="300" name="chartTest1" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="window" bgcolor=""> </embed> </object> <!--END Code Block for Chart chartTest1--> </div> What I’m doing wrong? Thanks for help.
  2. Problem With Windowmode

    Hi, I'm using FusionCharts with Richfaces and when I need to show a rich:panel above the chart doesn’t work in IE8 but works in Firefox. In IE8, the chart stays above the rich:panel. I look the forum and the problem is because the wmode should be transparent, I change my jar to the ‘fusionchartstaglibJSF1-2-java5-Version1_4_1.jar’ (this jar has an attribute windowMode) but the wmode doesn’t work. I post a sample application, a screenshot showing the problem and the jar that I’m using . What am I doing wrong? Thanks for help.test.zip
  3. Problem rerender FusionCharts in a rich:panel using IE

    Hi, I changed width="100%" to a absolute width. And it works!!! Thanks for Help.
  4. Problem rerender FusionCharts in a rich:panel using IE

    Hi, I did a simple class and a simple xhtml to show the problem. I attached too the jar fusionchartstaglibJSF1-2.jar and jdom-1.0.jar that I'm using in this project. Thanks for Help. test.zip
  5. Problem rerender FusionCharts in a rich:panel using IE

    Hi, The chart doesn't show up at all. I post a screen when the chart works and when the chart doesn't work Thanks for help.
  6. Problem rerender FusionCharts in a rich:panel using IE

    Hi, I'm using this structure <a4j:outputPanel id="test"> <a4j:commandLink> <a4j:support event="oncomplete" reRender="test"/> </a4j:commandLink> <rich:panel> <fc:renderHTML> </fc:renderHTML> </rich:panel> </a4j:outputPanel> This a4j:commandLink, in his action, make my <richPanel> enable or disable, and the <a4j:support> in his event="complete" make a rerender in my <a4j:outputPanel> and consequently in my chart. Sometimes the chart works perfectly, but sometimes the chart doesn't work in IE. In Mozilla, the chart always works. Thanks for Help.
  7. Hi, I'm using FusionCharts with JSF and when i need rerender in rich:panel sometimes the Column3D.jsf works, but sometimes it doesn't work. And this problem ocurred just in Internet Explorer. <a4j:outputPanel id="abasPanel"> <a4j:commandLink action="#{controller.actionEnableAndSearchNature}" id="abaNature"> <a4j:support action="#{controller.actionEnabledModal}" event="onclick" reRender="mensagem" /> <a4j:support action="#{controller.actionDisabledModal}" event="oncomplete" reRender="mensagem,abasPanel" /> </a4j:commandLink> <a4j:commandLink action="#{controller.actionEnableAndSearchFunction}" id="abaFunction"> <a4j:support action="#{controller.actionEnabledModal}" event="onclick" reRender="mensagem" /> <a4j:support action="#{controller.actionDisabledModal}" event="oncomplete" reRender="mensagem,abasPanel" /> </a4j:commandLink> <rich:panel id="naturePanel" rendered="#{controller.natureEnabled}"> <rich:spacer height="20" /> <div align="center"> <fc:renderHTML chartId="graficNature" filename="../fusionCharts/Column3D.swf" width="100%" height="300" xml="#{portalDoCidadaoDespesa.dataNature}" /> </div> </rich:panel> <rich:panel id="functionPanel" rendered="#{controller.functionEnabled}"> <rich:spacer height="20" /> <div align="center"> <fc:renderHTML chartId="graficFunction" filename="../fusionCharts/Column3D.swf" width="100%" height="300" xml="#{controller.dataFunction}"> </fc:renderHTML> </div> </rich:panel> </a4j:outputPanel> What am I doing wrong?