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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to toggle the Group Tree off from Javascrip?

Status
Not open for further replies.

youroad

Programmer
Mar 23, 2001
1
CA
Hi there,

When I call crystal report from Javascript, the report
always come out with the group tree toggled on and the
report size to fit width of the screen. But I needn't to
see the group tree in most of the time,and I want to see
the 100% size report. How can I do that?

Thx!
 
In SmartViewerJAVA.asp, you'll see the following code:

<param name=ReportName value=&quot;rptserver.asp&quot;>
<param name=HasGroupTree value=true>
<param name=ShowGroupTree value=true>
<param name=HasRefreshButton value=false>
<param name=HasPrintButton value=true>
<param name=HasExportButton value=true>

Just set ShowGroupTree or HasGroupTree to false. I'm not sure which one it is, though.

HTH...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top