ag-Grid - 在行悬停时显示按钮,就像在 Gmail 中一样
Posted
技术标签:
【中文标题】ag-Grid - 在行悬停时显示按钮,就像在 Gmail 中一样【英文标题】:ag-Grid - show buttons on row hover like in Gmail 【发布时间】:2020-10-03 11:43:13 【问题描述】:在 ag-Grid 中,我想在行悬停时显示操作按钮,就像在 Gmail 中一样。无论滚动位置如何,操作按钮都必须出现在网格的右端。
https://blog.ag-grid.com/build-email-client-with-ag-grid-like-gmail/ 提到了一种方法。他们在最后一列使用了 cellRenderer,并在“onCellMouseOver”发生时在其中显示按钮。这种方法只有在最后一列(使用 cellRenderer)始终在视图中时才有效。如果该列不可见,操作按钮也将不可见。
我不能使用这种方法,因为在我的情况下,有很多列,并且我的网格中的所有列不能同时显示在屏幕上。因此,根据滚动位置,右端可以有任何列,因此我们不知道在哪一列上添加 cellRenderer。
我们将如何实现这一目标?
【问题讨论】:
【参考方案1】:这是一个演示我的解决方案的 plunk:https://plnkr.co/edit/X4hCimLy6aL3j4eh
事实证明,这可以仅使用 CSS 来实现。这是我的做法:
-
添加用于显示操作按钮的列。使用 cellRenderer 在其中渲染按钮。将其固定在右侧。
使用 CSS,
将 ag-pinned-right-cols-container 绝对定位到右侧
通过设置宽度 0 来隐藏右页眉和分隔符
对于未悬停的行,通过将其填充和宽度设置为 0 来隐藏其中的操作按钮单元格
这里是完整的 CSS 说明:
/* Hide right header and spacer */
.ag-pinned-right-header,
.ag-horizontal-right-spacer
width: 0 !important;
min-width: 0 !important;
/* Add absolute position so that action buttons column will appear on top of other columns.
pointer-events: none to pass on mouse events to behind columns */
.ag-pinned-right-cols-container
position: absolute !important;
right: 0;
pointer-events: none;
/* Reset pointer-events so that click can happen on action buttons */
.ag-pinned-right-cols-container *
pointer-events: initial;
/* Hide border of right-cols-container */
.ag-pinned-right-cols-container .ag-cell
border: none !important;
/* Show action buttons only for the row that is being hovered.
For rows which are not being hovered, hide them by setting their width and padding to 0. */
.ag-pinned-right-cols-container .ag-row:not(.ag-row-hover),
.ag-pinned-right-cols-container .ag-row:not(.ag-row-hover) .ag-cell
width: 0 !important;
padding: 0 !important;
Ag-grid 的默认行悬停和行选择颜色具有一定的透明度。由于我们的操作按钮列绝对放置在其他列之上,因此由于这些透明颜色混合的方式,它的背景看起来更暗。
所以,最好在这种方法中使用不透明的背景颜色,如下所示:
.ag-theme-alpine
--ag-row-hover-color: hsl(207, 90%, 94%);
--ag-selected-row-background-color: hsl(207, 87%, 86%);
总体而言,
优点:-
-
这是一种插入式解决方案。您只需将代码放在 CSS 上方,即可获得悬停功能按钮。
此方法与框架无关。我已经在 React 和 Angular 上测试过了。 (对于 Angular,您必须使用 ng-deep 来解决样式封装)
缺点:-
-
如果您已经将一列或多列固定在右侧,这将不起作用
未来版本的 ag-grid 可能会使用不同的类名。所以这个 CSS 可能需要在升级 ag-grid 时更新
【讨论】:
非常好的解决方案。但是,当列仅占网格宽度的一部分并且最右边的单元格和操作按钮之间有一个空白区域时,还有一个问题。您将鼠标点向右移动;离开最后一个单元格后,行悬停消失,按钮也消失。以上是关于ag-Grid - 在行悬停时显示按钮,就像在 Gmail 中一样的主要内容,如果未能解决你的问题,请参考以下文章