|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Hide / Show DetailsI 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, 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, > > >
Other interesting topics
Session("passed") = Session("passed") + 1 error
FormsAuthentication.SignOut() not working when manually creating a ticket? cheap and reliable ASP.Net web hoster Size vs Width in ASP.net Sending emails Q: select value in dropdown list DataReader... and ... What did visual studio do? UML Modeler Q: sum grid column |
|||||||||||||||||||||||