Need advice on multitab form in ASP.NET MVC
Posted
by Sasha
on Stack Overflow
See other posts from Stack Overflow
or by Sasha
Published on 2010-06-03T15:57:50Z
Indexed on
2010/06/03
16:54 UTC
Read the original article
Hit count: 152
jQuery
|asp.net-mvc
Hi all, i need an advice on how to implement my form.
I have a requirement: i need a form that spans through 5 tabs. Each tab has around 10 fields, some of them empty, some of them must contain data from db and be non editable.
Each of these tabs must be a part of one form that is submitted to my controller.
The question is: what is the best way to implement this?
I was thinking about having partial views on each tab, each view would have its own model class. After form gets filled all data from all partials would go to action that will take care of all of it.
Any advices?
I am using ASP.NET MVC 1, Entity Framework 1, mvc extensions from Telerik and jQuery
© Stack Overflow or respective owner