diff --git a/bi/core.js b/bi/core.js index fbe93acd9..be8b58fb8 100644 --- a/bi/core.js +++ b/bi/core.js @@ -17812,7 +17812,7 @@ $(function () { //注册控件 BI.Plugin.registerWidget("bi.grid_table", function (ob) { //非chrome下滚动条滑动效果不好,禁止掉 - if (!(BI.isChrome() && BI.isWindows())) { + if (!(BI.isChrome() && BI.isWindows() && !BI.isEdge())) { return BI.extend(ob, {type: "bi.quick_grid_table"}); } else { return ob; @@ -17820,7 +17820,7 @@ $(function () { }); BI.Plugin.registerWidget("bi.collection_table", function (ob) { //非chrome下滚动条滑动效果不好,禁止掉 - if (!(BI.isChrome() && BI.isWindows())) { + if (!(BI.isChrome() && BI.isWindows() && !BI.isEdge())) { return BI.extend(ob, {type: "bi.quick_collection_table"}); } else { return ob; diff --git a/docs/core.js b/docs/core.js index 7457258ad..5801660c2 100644 --- a/docs/core.js +++ b/docs/core.js @@ -28954,7 +28954,7 @@ $(function () { //注册控件 BI.Plugin.registerWidget("bi.grid_table", function (ob) { //非chrome下滚动条滑动效果不好,禁止掉 - if (!(BI.isChrome() && BI.isWindows())) { + if (!(BI.isChrome() && BI.isWindows() && !BI.isEdge())) { return BI.extend(ob, {type: "bi.quick_grid_table"}); } else { return ob; @@ -28962,7 +28962,7 @@ $(function () { }); BI.Plugin.registerWidget("bi.collection_table", function (ob) { //非chrome下滚动条滑动效果不好,禁止掉 - if (!(BI.isChrome() && BI.isWindows())) { + if (!(BI.isChrome() && BI.isWindows() && !BI.isEdge())) { return BI.extend(ob, {type: "bi.quick_collection_table"}); } else { return ob; diff --git a/src/config.js b/src/config.js index 0e0a36110..fa06102d0 100644 --- a/src/config.js +++ b/src/config.js @@ -58,7 +58,7 @@ $(function () { //注册控件 BI.Plugin.registerWidget("bi.grid_table", function (ob) { //非chrome下滚动条滑动效果不好,禁止掉 - if (!(BI.isChrome() && BI.isWindows())) { + if (!(BI.isChrome() && BI.isWindows() && !BI.isEdge())) { return BI.extend(ob, {type: "bi.quick_grid_table"}); } else { return ob; @@ -66,7 +66,7 @@ $(function () { }); BI.Plugin.registerWidget("bi.collection_table", function (ob) { //非chrome下滚动条滑动效果不好,禁止掉 - if (!(BI.isChrome() && BI.isWindows())) { + if (!(BI.isChrome() && BI.isWindows() && !BI.isEdge())) { return BI.extend(ob, {type: "bi.quick_collection_table"}); } else { return ob;