我有一个dojox.grid.DataGrid,我想以编程方式选择一行。 我正在使用 setSelected() 来执行此操作,它第一次工作。 但是,对另一行再次调用它会使前一行突出显示。 此外,如果我尝试重新选择以前选择的行,则不会触发 onSelected 事件。 但是,如果我实际单击网格,它会清除问题:之前在网格中突出显示的行将未突出显示和取消选择。
代码如下所示:
if (grid.rowCount > 0 && idx < grid.rowCount)
{
grid.selection.setSelected(idx, true);
grid.render();
}
就好像我启用了多选,但我已将网格声明为 selectionMode="single"。
<table dojoType="dojox.grid.DataGrid"
id="hotTablesForAppDg"
autoWidth="true" autoHeight="true" selectionMode="single"
onSelected="autonomics.Clusters.loadTableDetails(this)">
我还需要打电话来清除以前的选择吗?
问题解决了。 您需要在当前选定的索引上调用 setSelected(..., false):
if (grid.rowCount > 0 && idx < grid.rowCount)
{
if (grid.selection.selectedIndex >= 0)
{
// If there is a currently selected row, deselect it now
grid.selection.setSelected(grid.selection.selectedIndex, false);
}
grid.selection.setSelected(idx, true);
grid.render();
}
我遇到了同样的问题,网格激活了以前的选择。以下代码行 grid.selection.clear();在调用 render() 之前,解决了问题。希望这有帮助。