Is it possible to post data back to a controller using a FormCollection object? I would like a user to be able to open a kendo window and select, by way of a checkbox, multiple entries. Then close the window, change data on the parent page and then submit the form (note: the kendo window div exists inside the form). I can get the kendo window to open and display all the data via a listview but I'm not sure how to get the checkbox values (the only piece of the kendo window the user can edit) back to my controller. I suspect kendo might be destroying all the data selected when the window is closed (note: I do not call the destroy command on the window) so I figured I could always create a bunch of hidden fields on the parent page and update them as the user checks off the check boxes but I was trying to avoid that.
I can always change my controller to a DataSource Object but I'd like to avoid rewriting code. The controller called is
I can always change my controller to a DataSource Object but I'd like to avoid rewriting code. The controller called is
[HttpPost]
ActionResult BrowseTeeTimes(string club FormCollection formData)