hello,
I am new to the Kendo UI so I really need some help. I'm sure this is simple for those knowledgable, but I have tried everything.
I have a kendo combobox on my index.cshtml view. The combo is filling correctly. It is bound to a list within my model.
What I need to do is make it post back to my index controller when a user makes a selection. I have spent hours reading the forums and other online blogs and cannot seem to find an example like mine using combobox.
Here is my combobox:
.Content(@<text>
<div style="padding:5px">
@(Html.Kendo().ComboBox()
.Name("PaystubsCombo")
.Placeholder("Select a Paystub")
.BindTo(Model.PaystubsAvailable)
.DataTextField("WedDDDisplay")
.DataValueField("WedValue")
)
</div>
</text>)
)
Thanks for the help in advance!