Hi all,
I have a simple (hopefully) scenario.
- Seats table
- Computers table
- SeatComputers table (since a seat can have multiple computers assigned)
I have a strongly typed "Edit" view for "Seats". I have managed to get a multi select list on that page in order to assign or unassign computers (jquery to add/remove items).
However, when I submit the form, the contents of select list are not posted to the controller action.
I assume this is because "computers" select list is not a model property.
Is there anyway to POST the additional data to the controller outside of model's properties?
My tables look something like this: