From fcf5597f8410693f3b8893acf77b4b1b801c95fc Mon Sep 17 00:00:00 2001 From: qixinzhi Date: Mon, 28 Oct 2024 02:58:03 +0000 Subject: [PATCH] * [story#63261,0.5h] remove striped and hover. --- lib/zin/wg/pivottable/v1.php | 3 ++- module/pivot/ui/show.html.php | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/zin/wg/pivottable/v1.php b/lib/zin/wg/pivottable/v1.php index 4adaf06ed6..67bb89fc7f 100644 --- a/lib/zin/wg/pivottable/v1.php +++ b/lib/zin/wg/pivottable/v1.php @@ -90,12 +90,13 @@ class pivotTable extends wg return dtable ( setID('designTable'), - set::striped(true), set::bordered(true), set::height(jsRaw("() => getHeight(800, $filterCount)")), set::cols($cols), set::data($data), set::emptyTip($emptyTip), + set::rowHover(false), + set::colHover(false), set::onRenderCell($onRenderCell), set::onCellClick($onCellClick), set::rowKey('ROW_ID'), diff --git a/module/pivot/ui/show.html.php b/module/pivot/ui/show.html.php index c712334c07..61b389151e 100644 --- a/module/pivot/ui/show.html.php +++ b/module/pivot/ui/show.html.php @@ -140,12 +140,13 @@ $generateData = function() use ($lang, $pivotName, $pivot, $data, $configs, $sho $fnGenerateFilters(), dtable ( - set::striped(true), set::bordered(true), set::height(jsRaw('window.getHeight')), set::cols($cols), set::data($rows), set::emptyTip($emptyTip), + set::rowHover(false), + set::colHover(false), set::onRenderCell(jsRaw('renderCell')), set::onCellClick(jsRaw('clickCell')), set::rowKey('ROW_ID'),