One of my forms has a multiselect control and it binds to items some of which contain a comma (",") .
The problem is that when form is submitted kendo multiselect returns multiple selected items separated by comma and it's difficult to separate items on backend.
Why can't multiselect control have a property named SeparationCharacter like:
.SeparationCharacter("*")
This way developers can choose how items will be separated on the backend and this will make our life little easier and save some development time.