浏览代码

prevent select2 key events from bubbling to body

Nicolas Cannasse 6 年之前
父节点
当前提交
414e785c2c
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      hide/comp/cdb/Cell.hx

+ 5 - 0
hide/comp/cdb/Cell.hx

@@ -337,6 +337,11 @@ class Cell extends Component {
 			(untyped s.select2)("val", currentValue == null ? "" : currentValue);
 			(untyped s.select2)("open");
 
+			var sel2 = s.data("select2");
+			sel2.$dropdown.find("input").on("keydown", function(e) {
+				e.stopPropagation();
+			});
+
 			s.change(function(e) {
 				var val = s.val();
 				if( val == "~" ) val = null;