Showing posts with label toggleitems. Show all posts
Showing posts with label toggleitems. Show all posts

Monday, March 19, 2012

Multiple ToggleItems?

Hello:
I have a table, with a group that inserts group headers and details, each
header expands or collapses its details, but I'll also like the users to be
able to expand all the data with a single click.
Is it possible to have an element toggled by two different ways?
Any Ideas?
Thanks,
Daniel Bello UrizarriOn Mar 7, 10:32 am, "Daniel Bello" <dburiza...@.yahoo.es> wrote:
> Hello:
> I have a table, with a group that inserts group headers and details, each
> header expands or collapses its details, but I'll also like the users to be
> able to expand all the data with a single click.
> Is it possible to have an element toggled by two different ways?
> Any Ideas?
> Thanks,
> Daniel Bello Urizarri
You should have several options to accomplish this, if I'm
understanding you correctly. You should be able to set the whole table
to be toggled; as well as, setting a row, column or individual cells
to be toggled by one control (i.e., textbox). That said, you cannot
toggle visibility on a single cell more than one way: unless it's a
part of a larger group (mainly a row or column). Hope this is helpful.
Regards,
Enrique Martinez
Sr. SQL Server Developer

Multiple ToggleItems

I have a report that utilizes five separate tables. All of the tables
are filtered by the same datetimestamp, which appears in the detail
row. Right now, I have the ToggleItem for all of the tables set to
the same text box at the top of the report. I can also set the
ToggleItem for each of the tables to a cell contained in the same
table. Is there any way to specify multiple Toggleitem values, i.e.
the text box at the top of the report AND the cell in the table
itself?No, this isn't possible.
The closest I think you can get is to have a report parameter which
determines the initial visibility state of the tables.
<Hidden>=Parameters!InitiallyHidden.Value</Hidden>
Then instead of using the top level textbox be a toggle item, you make it a
drillthrough back to the same report with the initallyhidden parameter value
set to
=Not(Parameters!InitiallyHidden.Value)
--
This post is provided 'AS IS' with no warranties, and confers no rights. All
rights reserved. Some assembly required. Batteries not included. Your
mileage may vary. Objects in mirror may be closer than they appear. No user
serviceable parts inside. Opening cover voids warranty. Keep out of reach of
children under 3.
"utterman" <chris.utter@.gmail.com> wrote in message
news:806a4b3c.0407281257.46ecf520@.posting.google.com...
> I have a report that utilizes five separate tables. All of the tables
> are filtered by the same datetimestamp, which appears in the detail
> row. Right now, I have the ToggleItem for all of the tables set to
> the same text box at the top of the report. I can also set the
> ToggleItem for each of the tables to a cell contained in the same
> table. Is there any way to specify multiple Toggleitem values, i.e.
> the text box at the top of the report AND the cell in the table
> itself?