Hello.
1. I have some problem with cheked listview control when i'm trying to use integer id in datasource array ( data = [ { text: 'text1', id: 1 }, { text: 'text2', id: 2 }] ) . I get error "split-button.js:294 Uncaught TypeError: Cannot read property 'Text' of undefined" .
(For example, in case of ejs-multiselect control it's all ok when id is integer)
2. I'm using dropdown list with the next code:
ejs-dropdownlist id="ClientId" dataSource="@ViewBag.ClientList" value="@Model.ClientId"
where Model.ClientId - integer id of the current client.
When i use data source with integer id, there is no selection on open view, when id is string - all ok!
Thx!!!