I'm work on asp.net mvc application, I used kendo UI controls in my application
I added many controls from kendo UI tools ,it worked correctly
when I tried to add Html.Kendo().ComboBox() tool it displayed in browser like text field not combo box and it didn't displayed any item of the control
I wrote the following example
@(Html.Kendo().ComboBox().Name("kcombobox").Placeholder("Select a value...") .BindTo(new string[] {"Bulgaria", "United States", "India","Australia", "United Kingdom"} ) )
so where is the problem please
I added many controls from kendo UI tools ,it worked correctly
when I tried to add Html.Kendo().ComboBox() tool it displayed in browser like text field not combo box and it didn't displayed any item of the control
I wrote the following example
@(Html.Kendo().ComboBox().Name("kcombobox").Placeholder("Select a value...") .BindTo(new string[] {"Bulgaria", "United States", "India","Australia", "United Kingdom"} ) )
so where is the problem please