i'm having a little problem here,
I have a table based calendar view that has, on each day, an ajax link that renders some day-specific form to the user to set for the selected day.
Then I want to select the day-specific data on the partial view that opened and save them also using ajax, but I also need to pass some info that is contained in the page model, like the selected day and month, year, etc.
The partial view that is loaded when I click on the day, is going to be the place where the user will chose some hospital duty info, like the duty start-time, the end time, the doctor that is going to be in charge of the duty, and on the page Model, there is the hospital ID, the day month and year of the Duty.
So how can I send the form data plus the page model to a controller that is going to save the data on the database?
Thanks.