Angular JS使用NG-Crange从SELECT菜单到控制器的均值



我想每当我从UI选择中选择一个项目到我确实尝试使用ng-update和ng更改的控制器,但似乎不起作用。任何想法?为什么代码在下面。谢谢。从UI选择中选择一个项目后,我只想触发功能。

控制器

 $scope.update = function () {
     alert("triggered")
 }

查看

<ui-select ng-change="update()" multiple="multiple" tagging="tagging" tagging-label="(custom 'new' label)" ng-model="main.record.skills" theme="bootstrap" sortable="true" style="width: 300px;" title="">
  <ui-select-match class="ui-select-match" placeholder="Select skills">{$ $select.selected.name $}{$ $item.name | limitTo:70 $} {$ $item.name.length > 70 ? "..." : "" $}</ui-select-match >
  <ui-select-choices ng-change="main.update()" refresh="main.read_skills($select.search)" repeat="skill in main.skills | filter:$select.search track by $index">
    <div ng-bind-html="skill.name | highlight: $select.search"></div>
    {$ name $}
  </ui-select-choices>
</ui-select>

添加select =" Onselected($ item)"到您的UI序列和控制器中:

$scope.onSelected = function (selectedItem) {
  //do selectedItem.PropertyName like 
//selectedItem.Name or selectedItem.Key 
//whatever property your list has.
}

相关内容

  • 没有找到相关文章

最新更新