我正在使用DOJO datagrid版本1.10我想要的是选项卡索引网格中的行应该突出显示,以便用户能够知道焦点在哪一行。但我没有得到行焦点。
答案 0 :(得分:1)
您可以收听dojox.grid.DataGrid::onCellFocus
事件。事件参数是焦点cell
- 对象本身和相应的rowIndex
。
function onCellFocus(cell, rowIndex) {
// first clear selection
grid.selection.clear();
// select the focused row
grid.selection.setSelected(rowIndex, true);
// invoke manually the render method
grid.render();
}
我为你创造了一个工作小提琴,可以找到here。