Its name is clear. But when I run the following in the developer tools' console:
Then get the focus to a grid cell open for editing, I get null logged after the 5 seconds elapse.
I'm creating a new functionality that requires getting the current edited cell at a keyup event handler. How to achieve this?
setTimeout(
function
(){
console.log($find(
"ctl00_MainContent_gv"
).get_batchEditingManager().get_currentlyEditedCell());
},5000);
I'm creating a new functionality that requires getting the current edited cell at a keyup event handler. How to achieve this?