Is it possible to have pagination on multiple table like each table as a one row ?
I have a (Foreach) in my MVC view that generates one table for each of elements(dynamic control,textbox,etc..)
its like about 50 or more table in my page ,
now is it possible to get pagination on my view ? like 6 table on each page? plus forward and backward button.
btw im avoiding post back so all table input must be send at once after final page entry.
thanks in forward
i have a model like this :
BaseForm model=> "For saving Base Form , like what type of form should it be(exam,Survey,or fillout type) Plus the userId of FormBuilder" Question model=> "For Saving question and type of them, plus it have the BaseForm ID and field that have the true answer"
Answer Model=> "The public form for answering the question or survey or filling form that keeps the user entry plus the uniqecode for each user"
ViewModelForAnswer model => "That just show the resault of the user by linq query. it gets the current admin user id and join the three table(question,answer,Base) with that condition and show the final resualt like how many true answer per user we have , or survey result.
Thanks :)