This question is locked. New answers and comments are not allowed.
I am trying to use the TabStrip as a way to display a list of 6 differents table I want the user to do CRUD on each of them.
For example I have the following tables: Groups, Users, Teachers, Students, Milestones, Courses
I want to have a tab for each of them, therefore 6 tabs. When the user click on the Teachers tab I want to provide a list (<ul>) with all teachers (the list is very short). I use the LoadContentFrom with PartialView and this is working fine. But when I click on a link (<ul>) to edit one of the teacher the PartialView returned fill the whole page.
Can I use this scenario with a TabSrip or should I just look elsewhere? Would using a grid instead would work better?
I am using MVC3 with Visual Studio 2010 (C#) and Razor as the View.
Thanks
For example I have the following tables: Groups, Users, Teachers, Students, Milestones, Courses
I want to have a tab for each of them, therefore 6 tabs. When the user click on the Teachers tab I want to provide a list (<ul>) with all teachers (the list is very short). I use the LoadContentFrom with PartialView and this is working fine. But when I click on a link (<ul>) to edit one of the teacher the PartialView returned fill the whole page.
Can I use this scenario with a TabSrip or should I just look elsewhere? Would using a grid instead would work better?
I am using MVC3 with Visual Studio 2010 (C#) and Razor as the View.
Thanks