Dojo example
The model has the extra spaces trimmed and there is a single space between the words:
<pre class="ng-binding">Magazzini Alimentari Riuniti</pre>
In the DropDownList the value properly contains 2 spaces between the words.
In the data the selected item has 2 spaces between the words: Magazzini Alimentari Riuniti
The model value should be identical to the data and the extra spaces should not be trimmed.
Hello Gopi,
Using the `ng-model` directive for this scenario is incorrect. This causes the hidden input to be updated with the item's value and the select DOM element trims the double spaces. This is a normal angular + select element behavior.
In order to avoid that you should use the `k-ng-model` directive provided by the Kendo AngularJS library: https://docs.telerik.com/kendo-ui/framework/AngularJS/widget-basics/binding.
A solution using the `k-ng-model` is available here: https://dojo.telerik.com/OQeCeSeF
Regards,
Ianko
Progress Telerik