Hi All,
Given the following database tables and sample data:
Locations
Id  ParentId  LeftIndex  RightIndex  Description
--  --------  ---------  ----------  -----------
34  2         85         104         Florida Region
73  34        94         95          Miami
Products
Id  ParentLocationId  Code  Description
--  ----------------  ----  -----------
1   73                MIW0  Miami Magazines
I'm using a nested set for my hierarchy data. What I'm trying to do is display my locations and products together in a collapsible tree view control. Will I somehow have to combine the tables before proceeding? Please advise in all areas (see tags)
Thanks,
rod.