Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Display Multiple Sets Of Data In THe Same Datagrid

1 view
Skip to first unread message

Iain Wilson

unread,
Apr 17, 2008, 3:16:33 AM4/17/08
to
Hi Can anyone please advise if this is possible and if so how I would
go about it (a pointer to an example would be greatly appreciated).

Using C# - Web Application

I have a DropDownList with the following entries

Room A
Room B
All Rooms

The datasource is a single table containing a list of all room
bookings. (We have 5 meeting rooms)

If Room A or Room B are selected then the Datagrid below is it updated
to display all the bookings for the selected day for the selected
room. This works perfectly.


eg

From To Booked By
07.00.00 07.29.00 An Other
07.30.00 07.59.00 An Other
08.00.00 08.29.00 An Other
08.30.00 08.59.00
09.00.00 09.29.00
09.30.00 09.59.00

However what we need to do is when the user selects the 'All Rooms'
option then the bookings for all rooms will be displayed on the same
grid eg

Room A Room B
From To Booked By Booked By
07.00.00 07.29.00 An Other
07.30.00 07.59.00 An Other Somebody
08.00.00 08.29.00 An Other Somebody
08.30.00 08.59.00
09.00.00 09.29.00 Somebody
09.30.00 09.59.00

How do I populate the datagrid as above.

Any assistance would be appreciated

Best Regards

Iain

Iain Wilson

unread,
Apr 17, 2008, 3:16:38 AM4/17/08
to

Eliyahu Goldin

unread,
Apr 17, 2008, 4:39:50 AM4/17/08
to
I would suggest having one dataset with all bookings for all rooms.
Depending on the ddl selection, you can filter only necessary rows and hide
the columns you don't want to show.

--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net


"Iain Wilson" <Email.Ia...@gmail.com> wrote in message
news:69c91143-f303-4ea6...@d45g2000hsc.googlegroups.com...

Srinivasa Nadella

unread,
Apr 17, 2008, 5:16:01 AM4/17/08
to
Hi
I think if you would have provided the code would be more useful. But not at
all a Problem, Here is my analysis and resolution.
1. I hope you are getting the Data from the DB into one table. So, in your
two scenarios, you have two different Column are available.
So, the algorithem I am giving it out here

1. Get the Data from the Database into a DataSet or put it in a Session
(Preferable) as the round trips will be reduced to the DB.
2. On Selection of the Values in the Drop Down, Use the Data Table Select
Property and store the Filtered data into the New DataTable
3. Assign the value to the DataGrid.
4. Remember for every selection you have to submit the page. Which means a
Page Refresh happens.

So, I think probably this should be helpful to you.


--
Srinivas Nadella
Senior Analyst - Dell Services Inc
Hyderabad
India

Iain Wilson

unread,
Apr 18, 2008, 2:51:47 AM4/18/08
to
Hi Srinivasa & Eliyahu

Thanks for your replies.

Some useful ideas there.

Many thanks

Iain

0 new messages