i used ui-select in angular-xeditable. in this sample all is ok but, Model not updated (foo.bar not change when select an item). can you help me?
<span editable-ui-select="foo.bar" e-ng-model="foo.bar" e-name="bar" name="bar" e-form="editableForm">
{{foo.bar.name}}
<editable-ui-select-match placeholder="Search..." style="width:500px">
{{$select.selected.name}}
</editable-ui-select-match>
<editable-ui-select-choices repeat="b in bars | filter:$select.search">
{{b.name}}
</editable-ui-select-choices>
</span>