I have two multi selects:
<select kendo-multi-select ng-model="authorizedUsers.office"
k-data-source="officeUsers"
k-data-text-field="'fullName'"
k-data-value-field="'userId'"
k-filter="'contains'"
k-placeholder="'Select users...'"
k-value-primitive="true"></select>​
<select kendo-multi-select ng-model="authorizedUsers.client"
k-data-source="​clientUsers"
k-data-text-field="'fullName'"
k-data-value-field="'userId'"
k-filter="'contains'"
k-placeholder="'Select users...'"
k-value-primitive="false"></select>
both clientUsers and officeUsers are arrays of objects but when I select anything the underlying model is updated with an array of strings of userId. Is there a bug with the multi select and k-value-primitive or am I missing something?