Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Group Tree Show/Hide 1

Status
Not open for further replies.

micro2005

IS-IT--Management
Mar 14, 2005
50
US
Hi,

CR 10, Java Reporting Component(JRC) and jsp pages to distribute reports. When I view the report in the web page the area where the group tree should show up is blank (white). When I click on the group tree show/hide button, the data moves to the left of the page. I need to have it like this (all the way to left) by default.

Here are my current settings
File -> Report Options -> Create Group Tree is unchecked
File -> Options -> Display Group Tree is unchecked

Any ideas how can I do this?

Any help will be appreciated.
 
Typically, the Viewers have a property that can be set to show or hide the Group Tree. The documentation for the JRC looks to be lacking, but I don't use it, so it doesn't matter to me. Try adding something like the following:

viewer.displayGroupTree(false);

-dave
 
Dave,

Thanks for pointing me in the right direction.

I was able to hide the group tree by using the following code in the jsp file.

<crviewer:viewer viewerName="test" reportSourceVar="_test" reportSourceType="reportingComponent" isOwnPage="true" displayGroupTree="false">
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top