31

我在 Angular 项目中有一个简单的 ag-grid,并且想要禁用选择其中一列中的单元格。在选择过程中简单地删除默认的蓝色轮廓也可以。当用户在其中单击时,我只想对单元格进行视觉更改。我怎样才能做到这一点?

我看到它ColDef有一个有帮助的属性suppressNavigable,因为它不允许使用 tab 键来选择单元格,但它仍然允许通过单击进行选择。此外,网格本身似乎可以提供suppressCellSelection,但它似乎不够精细,而且似乎也不会影响任何事情。

那么,如何删除这个蓝色边框单元格选择?

这是我对这些列定义的代码:

this.columnDefs = [
  { headerName: 'One', field: 'one' },
  { headerName: 'Two', field: 'two' },
  { 
    // I want to disable selection of cells in this column
    headerName: 'I want no cell selection!', 
    field: 'three',   
    suppressNavigable: true,
    editable: false,
  }
];

这是我用来测试的stackblitz 示例。

这是我不想在此列中看到的蓝色边框的屏幕截图:

我不想看到蓝色边框

4

7 回答 7

38

请注意,如果我们设置gridOption.suppressCellSelection = true我们可以禁用所有列的单元格的单元格选择。

这里的问题是关于在选择时不显示特定列的单元格突出显示的边框。

您可以通过一点 CSScellClassColDef.

您需要在 CSS 下方添加。

.ag-cell-focus,.ag-cell-no-focus{
  border:none !important;
}
/* This CSS is to not apply the border for the column having 'no-border' class */
.no-border.ag-cell:focus{
  border:none !important;
  outline: none;
}

并使用与中相同的cellClassColDef

suppressNavigable: true,
cellClass: 'no-border'

实时示例:aggrid-want-to-disable-cell-selection
这不会显示您甚至使用鼠标单击聚焦的单元格的边框。

于 2018-06-14T17:43:01.023 回答
25

我建议使用suppressCellSelectiongridOptions 中的选项。我不建议使用 CSS 快速修复。

this.gridOptions = {
  // Your grid options here....
  suppressCellSelection: true
};
于 2018-08-10T08:09:14.427 回答
6

你可以试试这个css hack。不需要自定义标志。

.ag-cell-focus, .ag-cell {
    border: none !important;
}

示例 - https://stackblitz.com/edit/aggrid-want-to-disable-cell-selection-answer?file=src%2Fstyles.css

在此处输入图像描述

于 2019-08-01T14:38:03.223 回答
1

试试这个对我有用

::ng-deep .ag-cell-focus,.ag-cell-no-focus{
border:none !important;
}
::ng-deep .no-border.ag-cell:focus{
border:none !important;
outline: none;
}
于 2020-09-17T08:01:08.683 回答
1

您还可以使用cellStyle动态删除选择。这是一个例子:

{
  headerName: "Is Selectable",
  cellStyle: (params) => {
    if (!params.value) {
      return { border: "none" };
    }
    return null;
  },
  ...
},
{
  headerName: "UnSelectable",
  cellStyle: { border: "none" },
  ...
}

现场演示

编辑 50862009/how-to-disable-selection-of-cells-in-ag-grid/50863144#50863144

于 2020-09-27T12:25:23.747 回答
0

你可以试试这个,如果你想把它应用到所有的单元格上。它对我有用。

.ag-cell-focus,.ag-cell-no-focus{
  border: 1px solid transparent !important;
}

::ng-deep .ag-cell:focus{
  border: 1px solid transparent !important;
  outline: none;
}
于 2021-08-03T09:19:10.007 回答
0

AG Grid 支持为大多数主题自定义 CSS 变量。尝试在网格容器或任何父项上定义选择边框颜色。

--ag-range-selection-border-color: transparent;

AG Grid:使用 CSS 变量设置颜色参数

于 2021-12-09T21:55:31.887 回答