Sign in to follow this  
OMMPAVAN

Resizing Issue (Order Id Is 104856)

Recommended Posts

Hai i have Dash boards on starting page .Each Dash board is a Zkoss panel .i have a ZKoss component HMTL

i am setting the resultant fusionchartrender.jsp to that content .my content is below .it is showing chart in a panel

If i maximize a panel or minimize a panel onPanelMaximizedHelper method will call and fusion charts.jsp is calling automatically by resizing that

But in another secnario i am not clicking on panel manually .i am maximizing panel by code like

 

dashBoradPanel.setMaximized(true);

dashboardCreate.onPanelMaximizedHelper(dashBoradPanel);

 

The same method executing in two secanrios(one by manual event and other by code) variables ,values everything coming correctly but chart is not generating( fusionchart.jsp is not calling) after maximixing through code it is showing empty .If i minimize that empty panel agin chart generating by calling fusionchart.jsp

 

 

Here if i manually resize then only fusion chart.jsp is calling why ?

 

 

-------------------------------dashBoardCreate class ---------------------------------

 

public void onPanelMaximizedHelper(Panel panel){

Panelchildren pc=(Panelchildren) panel.getChildren().get(0);

Html html=(Html) pc.getChildren().get(0);

Portallayout portLayout=(Portallayout)panel.getParent().getParent();

tring HtmlContent =html.getContent();

if(panel.isMaximized()){

making some change to HtmlContent

...

...

}else{

....

}

html.setContent(HtmlContent);

pc.appendChild(html);

 

}

 

 

--------------------------------------------

 

//Here my html content

Html chartFormHtml = new Html();

htmlCode.append("<form id="+formID+" target="+iFrame+" method='post' action='/BCMSWeb/Charts/FusionChart.jsp'>" );

 

htmlCode.append("<input type='hidden' name='chartID' value='"+chartDetail.getChartId()+"'/>");

htmlCode.append("<input type='hidden' name='strlXml' value='"+strXML+"'/>");

htmlCode.append("<input type='hidden' name='swfFile' value='"+chartDetail.getSwfFile()+"'/>");

htmlCode.append("<input type='hidden' name='width' value='"+chartDetail.getChartWidth()+"'/>");

htmlCode.append("<input type='hidden' name='height' value='"+chartDetail.getChartHeight()+"'/>");

htmlCode.append("</form>");

htmlCode.append("<iframe id ="+iFrame+" name="+iFrame+" border='0' frameborder='0' height='"+chartDetail.getiFrameHeight()+"' width='"+chartDetail.getiFrameWidth()+"'></iframe>");

htmlCode.append("<script type='text/javascript'>");

htmlCode.append(" document.getElementById("+formID+").submit();");

htmlCode.append("</script>");

chartFormHtml.setContent(htmlCode.toString());

Share this post


Link to post
Share on other sites
Guest vishal@fusioncharts

Hi,

 

Your query doesn't belong to this forum. Please post it in the appropriate forum to get the right response.

 

Thanks

Vishal

 

 

 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this