Hi -
I am using .Net MVC and have a custom editor template for the scheduler with a new textbox for MasterCatalogID. The value gets set via javascript from button. When I try to save the session, in the Controller method, I do not see the value for MasterCatalogID.
However, if I manually type in the value, I can get it in the Controller method.
Is there something else I need to add to retrieve the value?
<div class="k-edit-label"> @(Html.LabelFor( model => model.MasterCatalogID, "Course" ))</div><div data-container-for="MasterCatalogID" class="k-edit-field input-group"> @(Html.TextBoxFor( model => model.MasterCatalogID, new { @class = "k-textbox" } ))</div>