Angular jsを使用してselect2 on-changeイベントを発生させる際に問題が発生しました。選択ドロップダウンの変更は、変更イベントがAngular jsを使用したSelect2イベント処理
<select ui-select2="{allowClear:true}" data-placeholder="Select a Department" ng-change="DoSomething()" class="input-max" ng-model="l.DepartmentID">
<option value=""></option>
<option ng-repeat="d in l.LineLookups.Departments" value="{{d.DepartmentID}}">{{d.Type}}</option> </select>
発生しません:
は、ここに私のhtmlです。コントローラのイベントハンドラは次のとおりです。
$scope.DoSomething = function() {
alert('here');
...
}
これを処理するにはどうすればよいでしょうか?私はモデル値を監視するように言われました。それはうまくいくのでしょうか、それとも良い方法がありますか? NG-モデルを見て
Selectセレクトは、いくつかの回避策についてこのGoogleグループのスレッドをチェックし、明らかに角度の問題があります。https://groups.google.com/forum/# !msg/angle/YLcqj43ebR0/6gmayyHGz5MJ – tymeJV