I use several KendoUI elements like ComboBox, DatePicker etc. everything works fine, but there is one serious problem that these items actually allow you to enter manually.
For example, in a comboBox, which I can print by clicking on it, which activates the text field, which is really dangerous and spoils the purpose of using elements of the <select> type list, the same thing happens with the choice of date.
So, you can specify how I can disable these manual inputs and restrict the user to only the choice of available parameters.
<input id="date" value="@DateTime.Now.Date"/> <select name="need" id="need"> <option value="1">High</option> <option value="2">Normal</option> <option value="3">Low</option> </select> <script type="text/javascript"> $("#date").kendoDatePicker(); $("#need").kendoComboBox(); </script>
Unwanted help.
Maven source share