I need a display control that groups information by business line, then by date and then by product name like so:
Where I have indicated a + sign, i would like the child data to be collapsible, and of course if there's no data for LINE-C, then I'd like for LINE-C not to show up in my control.
I don't think a report will do, (but not being a report pro, i'm not sure) because I need interactivity on this display control, users will need to click on it to go to other places in my app. So I had considered possibly doing something with one of the AJAX accordion control (
But being rather new to the asp.net world, I am just not sure what's the best way to go with this - maybe there is something already out there that does this? If there is I haven't seen THE one yet. Possibly I might need to create a custom control that mixes and matches other controls out there, but I'm just not sure. So before I waste a lot of time with trial and error, I humbly request the opinion of you pros that hang out on this board.
Code:
+ LINE-A
+ MOST RECENT EFFECTIVE DATE
ID# PRODUCT STATUS
xx xxxxx xxxx
yy yyyyy yyyy
+ NEXT MOST RECENT EFFECTIVE DATE
ID# PRODUCT STATUS
aa aaaaa aaaa
bb bbbbb bbbb
+ LINE-B
+ MOST RECENT EFFECTIVE DATE
ID# PRODUCT STATUS
xx xxxxx xxxx
yy yyyyy yyyy
+ NEXT MOST RECENT EFFECTIVE DATE
ID# PRODUCT STATUS
aa aaaaa aaaa
bb bbbbb bbbb
+ LINE-C
+ MOST RECENT EFFECTIVE DATE
ID# PRODUCT STATUS
xx xxxxx xxxx
yy yyyyy yyyy
Where I have indicated a + sign, i would like the child data to be collapsible, and of course if there's no data for LINE-C, then I'd like for LINE-C not to show up in my control.
I don't think a report will do, (but not being a report pro, i'm not sure) because I need interactivity on this display control, users will need to click on it to go to other places in my app. So I had considered possibly doing something with one of the AJAX accordion control (
But being rather new to the asp.net world, I am just not sure what's the best way to go with this - maybe there is something already out there that does this? If there is I haven't seen THE one yet. Possibly I might need to create a custom control that mixes and matches other controls out there, but I'm just not sure. So before I waste a lot of time with trial and error, I humbly request the opinion of you pros that hang out on this board.