up vote 0 down vote favorite
share [g+] share [fb]

I've tried to google my requirement but without luck. What I have is a form that is broken into several tabs, all which works perfectly. However, now I've been asked to provide an 'All' tab with the whole form, in addition to the individual tabs for each section.

Seems like a fairly straightforward request, but I can't see how I can implement it using the jQuery tabs functionality?

link|improve this question

Are you using any specific server-side technology? (PHP, ASP.Net, etc.) – Dan Appleyard Mar 19 '09 at 22:00
did you find any solution to your problem? – nWorx Apr 22 '10 at 8:54
feedback

3 Answers

I'm relatively new to jQuery so there might be a much better approach. But if I had to implement this myself I would look into reparenting the contents of the "tab divs" in the select event of the tab.

link|improve this answer
Sounds like it could work. I'm a complete jQuery newbie - so I'm not sure how I'd begin to implement your suggestion? – BrynJ Mar 19 '09 at 20:31
feedback

I think Ken is on the right trail, but I might just clone the appropriate DOM elements. If there are forms, you're going to probably want a single submit instead of multiple so reparenting isn't ideal.

Cloning them will also keep the height and sizing more consistent if your tabs expand based on the contents.

Maybe look at the following: http://www.evotech.net/blog/2008/11/jquery-tutorial-dom-manipulation-and-sorting/

On the other hand, re-parenting avoids any synchronization issues you might have between each screen.

link|improve this answer
feedback

Rather than having actual tabs, it might be easier for your 'tab' buttons to just hide all form elements that are not part of that 'tab'.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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