2016-07-28 69 views

回答

1

您可以在dojox.grid.DataGrid::onCellFocus事件中收聽。事件參數是關注的cell -Object本身和相應的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(); 
} 

我爲您創建了一個工作小提琴,可以找到。

相關問題