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!

Display issue - Multiple attribute drop downs in Web Reports

Status
Not open for further replies.

stuard

Technical User
Mar 24, 2009
2
GB
Hello,

Wanted to see if anyone here has experienced issues when a webreport parameters, referencing a group of Subweb reports and Live Reports, do not line up in the display when the Master Web Report has been run.

I have checked out all the Live/Web Reports and they run perfectly individually, but when the master report is run (that contains 9 seperate Custom and String paramters) the options space out across the screen instead of lining up.

The header section for each is as follows
<select name="inputlabel3" style="width:225px;">
<option value="">[... choose option from the list below ...]</option>

Row Section
<option value="[LL_REPTAG=System /]">[LL_REPTAG=System /]</option>

Footer Section
</select>
</TABLE>

Each of the custon SubWeb reports are in turn referencing Livereports that pull back dropdown tables that allow the users to select specific Doc/Drawing Types. These all run as expected.

Hope someone can help with this.

Cheers
Dave

 
I recently did something similar. I used "Main" report for the <select> tag, and a "sub" report to generate all the option tags.

main (header section)
=============

<select id="areaoption" onchange="getgroups()">
<option value="null">--Select Area--</option>
[LL_WEBREPORT_SUBWEBREPORT NODEID:[LL_REPTAG_$GetOptions-WR /] /]
</select>


sub (row section)
==============

<option value="[LL_REPTAG=OPTION /]">[LL_REPTAG=OPTION /] - [LL_REPTAG=NAME /]</option> <br>
 
Hi, Thanks for the feedback,

I figured out the issue and it was with the footer. Just needed to remove </TABLE>. Runs great now.

Dave
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top