Hi Mark,
You can pass values to your controller action using input type="hidden":
<form method="post" action="/Home/YourAction">
<input type="hidden" id="yourVariableName" name="yourVariableName" />
<input type="submit" value="Post" />
</form>
...
public ActionResult YourAction(string yourVariableName)
{
return View();
}
You can use the calendar client-side events to fill the hidden input with desired value.
All the best,
Vlad
the Telerik team
Check out
Telerik Trainer, the state of the art learning tool for Telerik products.