如何使用 tab 键进入网格?
可以在声明选项卡的 html div 上设置 tabindex,但它只会关注整个 div。我想专注于第一行的第一个单元格。
就个人而言,我想出了以下技巧,但我正在寻找更好的解决方案。欢迎任何外部库。
我的网格中只有一列和简单的行,因此应该改进此代码以消除对所有列和/或具有多个级别的行的所有单元格的潜在关注。
在我的指令里面
<div ag-grid="ctlr.gridOptions" class="ag-fresh" role="grid" tabindex="201" ng-focus="ctlr.onFocus()" id="myGrid"></div>
内部控制器
ctrl.onFocus = function()
{
var rows = $('#myGrid .ag-row.ag-row-even.ag-row-level-0');
var firstRow = rows[0];
var firstColumnCells = $('#myGrid .ag-row.ag-row-even.ag-row-level-0 .ag-cell.cell-col-0');
var firstCell = firstColumnCells[0];
//remove potential focus on rows
for (var i = 0; i < rows.length; i++)
{
rows[i].classList.remove('ag-row-focus');
rows[i].classList.add('ag-row-no-focus');
}
//remove potential focus on first column cells
for (var j = 0; j < rows.length; j++)
{
firstColumnCells[j].classList.remove('ag-cell-focus');
firstColumnCells[j].classList.add('ag-cell-no-focus');
}
//focus first row
firstRow.classList.remove('ag-row-no-focus');
firstRow.classList.add('ag-row-focus');
//focus first cell
firstCell.classList.remove('ag-cell-no-focus');
firstCell.classList.add('ag-cell-focus');
firstCell.focus();
};
github上的现有问题:https ://github.com/ceolter/ag-grid/issues/183