Hello,
I am looking for a solution how to capture the kendo dropdown list value on the code behind class after postback? I am trying to set the value property binding to the Page model property but it's not working. Any recommedation would be appreciated.
<kendo-dropdownlist name="categories" for="@Model.Input.PermitCategoryList"
auto-width="true"
option-label="Select permit Category..."
class="form-control"
value="@Model.Input.PermitCategory"
bind-to="@(new SelectList(@Model.Input.PermitCategoryList,"Alias","Name"))"></kendo-dropdownlist>