This repository was archived by the owner on Oct 2, 2019. It is now read-only.
This repository was archived by the owner on Oct 2, 2019. It is now read-only.
Disable first refresh call #1197
Open
Description
Hi all,
I've found a problem in ui-select with binding remote data.
This is my code
<ui-select ng-model="group.selected" theme="bootstrap" ng-disabled="group_disabled" reset-search-input="false">
<ui-select-match placeholder="Select a group...">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="group in groups | propsFilter: {name: $select.search}" refresh="refreshGroups($select.search)" refresh-delay="0">
<div ng-bind-html="group.name | highlight: $select.search"></div>
<small>Description: {{ group.description }}
</small>
</ui-select-choices>
</ui-select>
I want that the call to remote server starts after user keyup on input and not before.
I see that the call start after the page is loaded
Regards,
FS