我正在尝试使用以下方法自动选择单元格:
grid.selection.selectRange(0, 5);
dojo.connect(grid, "onEndSelect", func);
dojo.connect(grid, "onEndDeselect", func);
func:function(type, startPoint, endPoint, selected)
{
console.log("CELLS:"+selected["cell"].toSource());
}
那是可行的,但是萤火虫给了我一个空的选择。有什么方法可以自动选择单元格吗?
我也尝试使用
grid.selection.select("cell", 1 , 2)
但不起作用。
谢谢。