dojo中的setSelected()DataGrid使前一个选择活动,即使对于带有selectionMode =“single”的网格也是如此

时间:2012-06-29 17:34:57

标签: dojo dojox.grid

我有一个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)">

我还需要打电话来清除之前的选择吗?

2 个答案:

答案 0 :(得分:8)

问题解决了。您需要在当前选定的索引上调用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();
}

答案 1 :(得分:7)

我遇到了同样的问题,网格上的选择处于活动状态。 下面的代码行     grid.selection.clear(); 在调用render()之前,解决了这个问题。希望这会有所帮助。