2016-07-28 8 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(); 
} 

나는 를 찾을 수 있습니다 당신을 위해 작업 바이올린을 만들었습니다.