AngularUI select2 onChange method
How do I go about doing something along these lines: <select ui-select2 multiple="true" on-change="onChange()" data-ng-model="select2Model"></select> where in my controller, I have the onChange(select2OnChangeData) defined. I tried adding this scope: { model: "=ngModel", onChange: "&onChange" }, to angular-ui, but that changed the scope variable and broke the rest of the functionality. I'd really like to refrain from doing: .on("change", function(e) Good thing I did just this in my project: HTML <select data-placeholder="Select an asset" class="input-xxlarge" ui-select2="sourceAssetId" ng