Home All Groups Group Topic Archive Search About
Author
14 Apr 2005 8:36 PM
Greg
Hello,

I am trying to display order ids and order details (order items).
I would like to give the user Hide/Show option to either display or hide
order details.

The page would look like:

Expand All   Collapse All

===================
Order 1
Hide Details
Item 1
Item 2
Etc
===================

===================
Order 2
Show Details
===================

Any ideas how to accomplish this (could it be done with client site code)?
Thanks,

Author
15 Apr 2005 3:25 AM
Dave Britton
Hi Greg,
There are a couple of ways to do this - essentially what you need is some
JavaScript to set things to hidden or not.

You could start with building a client side function something like:
<script language="javascript"> 
    function setVisibleStatus(element)
    {
        if (document.all[element].style.display=="")
        {
            document.all[element].style.display=="none"
        }
        else
        {
            document.all[element].style.display=""
         }
    }
</script>

This function will toggle this supplied element id to shown or hidden.

Then, as you are writing out your data you would need to add in hooks to
this function. So, let's say you are using the DataGrid for this, in the
ItemCreated event for the grid, you could use the
control.Attributes.Add("onclick", "setVisibleStatus('tablerowid')"), or
something similar.

Hope this gives you a start ...
Dave

Show quoteHide quote
"Greg" wrote:

> Hello,
>
> I am trying to display order ids and order details (order items).
> I would like to give the user Hide/Show option to either display or hide
> order details.
>
> The page would look like:
>
> Expand All   Collapse All
>
> ===================
> Order 1
> Hide Details
> Item 1
> Item 2
> Etc
> ===================
>
> ===================
> Order 2
> Show Details
> ===================
>
> Any ideas how to accomplish this (could it be done with client site code)?
> Thanks,
>
>
>

Bookmark and Share