I have a asp.net placeholder which gets populated with many custom controls, each custom control is a summary of a location containing various facts and interactions.

When directly populating the placeholder with the controls they get added one under another down the page.

I'm trying to find a way to place each custom control generated in a loop in its own tab (any sort of tab, asp.net/jquery ui etc) so that the user can select the summary they wish to view instead of having to scroll down the page to find it.

Does anyone have any inkling of how this might be accomplished? (I'm using ASP.NET and VB.NET)

link|improve this question

50% accept rate
feedback

2 Answers

You have several options asp.net Ajax Toolkit offers a Tab Control, Accordion both great additions, then of course you have jquery that offers tabs aswell.

Asp.net Ajax tabs here

Asp.net Accordion here

Jquery UI Tabs here

link|improve this answer
I'm not asking after Tab controls, I'm looking for a way to populate any tab control with a dynamic number of generated custom controls. – Korv Dec 23 '11 at 14:14
if you have user controls for each "tab" then why would you need to populate dynamically? you just put each user control inside each tab and it'll display. Maybe I'm not understanding your question correctly. It would help if you specified exactly what the end result you are looking for is. – Andres Dec 23 '11 at 14:22
The controls are generated in a loop which currently adds each control to a placeholder, each iteration I want to add the control produced to a different tab. – Korv Dec 23 '11 at 14:26
Do you have different placeholders already in your aspx or are you creating them on the fly? – Andres Dec 23 '11 at 14:42
Currently I just have one placeholder in the aspx to which all the custom controls are added, because if I created them on the fly, I can't then add controls to them during the same event because they wouldn't yet exist. – Korv Dec 23 '11 at 15:09
feedback

If you looking for a some sort of tab control please have a look at this article about Tabs Demonstration

link|improve this answer
I'm not asking after Tab controls, I'm looking for a way to populate any tab control with a dynamic number of generated custom controls. – Korv Dec 23 '11 at 14:14
@Korv it is bit unclear what you actually expecting. – huMpty duMpty Dec 23 '11 at 14:20
I'm trying to add custom controls that are generated via a loop to different tabs, instead of adding them all one by one to a placeholder and having them displayed underneath each other. – Korv Dec 23 '11 at 14:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.