We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, changed values can only be recognized using a value-changed callback. Implement a ng-model binding to allow:
value-changed
ng-model
<fancy-select ng-model="data"/>
with data being e.g.:
{value: [], possibleValues: [{caption: "Option A", id: 5}, {caption: "Option B", id: 7}]}
and internally doing e.g.: scope.items=data.possibleValues scope.value=data.value
scope.items=data.possibleValues
scope.value=data.value
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, changed values can only be recognized using a
value-changed
callback.Implement a
ng-model
binding to allow:with data being e.g.:
and internally doing e.g.:
scope.items=data.possibleValues
scope.value=data.value
The text was updated successfully, but these errors were encountered: