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

Extend group tree in DHTML viewer 1

Status
Not open for further replies.

ianoctdec

Programmer
Feb 6, 2003
190
CA
Hi everyone,
Is there a way to extend the group tree frame in CE 10, DHTML viewer?
Some of our reports have groups with long names, and our users would like to see the whole thing so they can easily jump from group to group.

Thank you,
Daniela
 
Hi,
There are 2 Viewer attributes that appear to control this:
Code:
GroupTreeWidth Property
 Specifies the width of the group tree.
 
GroupTreeWidthUnit Property
 Specifies the width unit of the group tree
so you could specify by
Code:
with Viewer
 .GroupTreeWidth=12
 .GroupTreeWidthUnit= (one of these)
0 Specifies to use pixels as the units for the given property.
1 Specifies to use percentage as the units for the given property.



[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Thank you, Turkbear.
Where do I find the Viewer code to do this change?

Daniela
 
Hi,
I am not really sure in a standard system ( one using ePortfolio to view reports) since we use custom coded pages, but I would start with the viewreport.csp page in the ePortfolio directory ...



[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top