Hi,
I am wondering why on the select event for the Spreadsheet control I am seeing the previous active cell and not the one I just clicked on? Is there any way I can get the cell I last clicked on?
The function I am calling from the select event looks like this:
function onSelect(e) {
var spreadsheet = e.sender; // Get the Spreadsheet widget
var selectedCell = spreadsheet.activeSheet().activeCell();
console.log("on select event the cell value " + selectedCell);
}
Here is a Dojo link with an example:
Calling Read From dataSource Transport: | Kendo UI Dojo (telerik.com)
Thanks,
George
For some reason when I try the changing event in this demo:
changing - API Reference - Kendo UI Spreadsheet - Kendo UI for jQuery (telerik.com)
I get the correct cell range/ identifier... the one I just changed.
When I added this code to my spreadsheet code I got the previously selected cell...just like before.
-George