I've got a dropdown list defined using angular like this:
<select class="form-control"
ng-model="controller.selectedUser.superiorId"
ng-options="superior.userId as superior.lastName + ' ' + superior.firstName for superior in controller.superiors | orderBy:['lastName', 'firstName']"></select>
This works fine, however I want to show a little image next to the entries and so I'm trying to convert this to a Kendo drop down list where you can define an HTML template (like this).
I would like to continue using the concise ng-options syntax and rather not use the Kendo DataSource approach which feels a bit clumsy IMHO. I do need the dropdown to refresh when I update the superiors array in the controller, but I can't seem to get it to work. I've tried ng-options, k-ng-options (as suggested here), but all I get is an empty dropdown.
The general lack of information (e.g. no answer here for 7 months) makes me wonder if this should be possible at all.
Any help is appreciated.