I have researched the existing posts on SO for this topic and none seems to have a satisfying answer.
I am trying to achieve a tab behavior that's like Chrome's in ASP.Net MVC3, specifically the tabs will have the following behaviors:
- Be dragged out and standalone as a draggable div on page. I'm thinking of using jQuery dialog with iFrame. Need help/suggestion on how to make it look like a tab.
- Once minimized, go back as a tab in the existing tab container
point number 2 is probably easy to achieve - I just hide the div and reconstruct the tabs, but has anyone done #1 and/or can help point a starting direction for me?
Each tab corresponding to a partial view (mvc)/user control(web form).