Angular指令select2-blur事件未按预期工作

时间:2014-08-11 19:36:10

标签: javascript jquery html css angularjs

我有以下指令:

angular.module('click-to-edit-select2', [])
.directive("clickToEditSelect2", function() {
  var editorTemplate = '<td id="4" class="click-to-edit-select2">' +
  '<div id="3" style="height:20px" ng-click="enableEditor()" ng-hide="view.editorEnabled">' +
  '{{value}} ' +
  '</div>' +
  '<div id="2" ng-show="view.editorEnabled" style="padding:0px 10px 0px 0px";>' +
  '<input id="1" type="hidden" ui-select2="select2Options" ng-model="view.editableValue" ng-change="changeText()" />' +
  '</div>' +
  '</td>';

  return {
      restrict: "A",
      replace: true,
      template: editorTemplate,
      scope: {
          value: "=clickToEditSelect2"
      },
      controller: function($scope, $element, $attrs) {
          $scope.view = {
              //editableValue: $scope.term.TermId.id,
              editorEnabled: false
          };


          $scope.enableEditor = function() {
              if ($scope.$parent.term.Status == "new") {
                  $scope.view.editorEnabled = true;
                  $scope.view.editableValue = $scope.value;

              }
          };



          $scope.disableEditor = function() {
              $scope.view.editorEnabled = false;
          };

          $scope.save = function() {
              //alert($scope.term.TermId.id);
              $scope.value = $scope.view.editableValue.id;
              $scope.disableEditor();
          };

          $scope.$watch('view.editableValue', function(newVal, oldVal) {
              if (newVal != undefined && newVal != "") {
                  if (oldVal == newVal) return;
                  $element.addClass('valueChangedTD');
                  var str = newVal.text;
                  var res = str.split(" - ");
                  //slice the termID
                  res.splice(res.length - 1, 1);

                  var termDescription = res.join(' - ');

              }
          }, true);

          //select2 has its own blur event !
          $element.on('select2-blur', function(event) {
              $scope.save();
          });

          var initSelectionCb = function(item, callback) {
              if (item != "") {
                  var id = item.val();
                  var data = { id: id, text: id };
                  callback(data);
              }
          };

          $scope.select2Options = {
              placeholder: "Select Terminal",
              dropdownAutoWidth: 'true',
              multiple: false,
              width: "resolve",
              selectOnBlur: true,  //this does not seem to work
              initSelection: function(item, callback) {
                  //selects the initial item
                  initSelectionCb.call(self, item, callback);
              },
              ajax: {

                  url: "/GetDataSelect2",
                  type: "POST",
                  contentType: "application/json",
                  data: function(term, page) {

                      var Json = {};
                      Json.term = term;
                      Json.page = page;
                      Json.limit = 10;

                      return Json;

                  },
                  results: function(data, page) {
                      return { results: data.options };
                  }
              }
          }


      }
  };

});

使用select2 3.4.8 bootstrap 2.3.1 角度1.2.19

正如您所看到的,我已经设置了onSelectBlur选项(我已尝试过&#39; true&#39;和true),但它无法正常工作。

我为select2-blur事件添加了一个事件处理程序,但它没有按预期工作。

我希望单击select2 ddl,选择一个选项,然后选项卡或单击某处并使div隐藏select(这是$ scope.view.editorEnabled设置为false时应该发生的事情)。

正在发生的事情是,在从ddl中选择一个项目然后在其他地方进行制表或点击时,不会隐藏带有select2 ddl的div。如果我第二次从select2 ddl中选择一个项目,则隐藏带有select2 ddl的div,并显示带有所选值的div。

我可以看到每次调用select2-blur事件(通过设置断点),但div不会立即更新。 。 。只有两次运行。

我真的不想将select2-blur事件附加到$元素(即TD),但我对如何执行此操作感到茫然。我试图将事件附加到我发现的其他各种元素上(.select2-choice,.select2-container),但我甚至无法触发事件。

此时已经过了几个小时,我想我可以用一双新鲜的眼睛。它可能很简单,我没有看到。

谢谢!

1 个答案:

答案 0 :(得分:0)

结果是一个非常简单的$ scope。$ apply()here:

      //select2 has its own blur event !
      $element.on('select2-blur', function(event) {
          $scope.save();
          $scope.$apply();
      });

是答案。我想这与在事件的回调中更改$ scope值有关?