Skip to content

Commit

Permalink
fix: 解决grid中输入时无法通过鼠标滑动选择
Browse files Browse the repository at this point in the history
  • Loading branch information
LiuYueKai committed Apr 7, 2017
1 parent 2eae2b9 commit 54d7aa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/js/re_gridCompDrag.js
Expand Up @@ -42,7 +42,7 @@ const drag_initGridEventFun = function(){
var oThis = this;
$('#' + this.options.id + '_resize_handle').on('mousedown', function(e) {
oThis.dragStart(e);
return false;
// return false;
});
};
/*
Expand Down
2 changes: 1 addition & 1 deletion src/js/re_gridCompRowDrag.js
Expand Up @@ -20,7 +20,7 @@ const rowDrag_initGridEventFun = function() {
oThis.rowDragStart(e, eleTr);

}
e.preventDefault();
// e.preventDefault();
}
});

Expand Down

0 comments on commit 54d7aa8

Please sign in to comment.