click on datagrid item, display new datagrid based on that click

G

Guest

I want to have a datagrid that is just one column of group names (say from
qryGroups)

When someone clicks on a group name (ie clicks in that 'cell' or the column
could be a hyperlink column... whatever is best), i want the datagrid to then
display results from qrySubgroups, but filter it for only those that have the
column intGroup equal to the intGroup value from the one they clicked from
qryGroups

ie
qryGroups has:

intGroup GroupName
1 Accounting
2 Orders
3 Service


qrySubgroups has

intGroup SubGroupName
1 Taxes
1 Booked Revenue
2 Customers
3 Maintenance
3 Repairs


So there are Taxes and Booked Rev as subgroups of Accounting

so the original dataset will display:

Accounting
Orders
Service

when the user clicks on Accounting, it should then display:

Taxes
Booked Revenue


how do i best do this?

can i just put both tables (qryGroups, qrySubgroups) into the dataset that
the table runs off of, then when they click on it, have it change from using
dataset1.qryGroups to dataset1.qrySubgroups and have it filter by
qryGroups.intGroup ?

or maybe the original cells are hyperlinks and they open subgroups.aspx and
pass the value of the group (intGroup) and then the dataset on that page runs
off of that value (filters by it?)

or maybe some easier or other way i'm not thinking of!

any help!?!?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top