1

我有一个容器,我在它的配置中用它制作了可拖动的容器:

draggable: {
  direction: 'horizontal',
  constraint: {
      min: { x: 0, y: 0 },
      max: { x: parseInt(screen.width-57), y: 0 }
  },
  listeners: {
    dragstart: function(panel, e, offset){

    },
    drag: function(panel, e, offset){

    },
    dragend: function(panel, e, offset){

    },
    scope: this
  },
}

它工作正常。现在我想阻止用户在触发拖动事件时拖动面板。这听起来可能很愚蠢,但这是为了防止用户直接拖动面板,他必须将手指放在工具栏上才能拖动面板。

我已经尝试过一些事情,比如

return false;
e.stopEvent();
e.stopPropagation();
e.preventDefault();

但他们都没有工作。有谁知道为什么?

4

1 回答 1

0

我终于将 dragstart 事件更改为

dragstart: {
  fn: function(){

  },
  order: 'before'
},

并且return false;工作得很好......

于 2012-05-23T18:11:36.110 回答