Hi , i have only one editable column in my grid and i have included couple of validation on that column at model field level . which is working fine.
Now i am planning to include tab-out event so that on press of TAB and SHIFT+TAB focus will move to next/previous editable column ( in my case only one column is editable so it should go to next/previuos row same column). but TAB out event is called instantaneously so its creating some conflict with VALIDATION , so even if the validation fails focus is moving to next row which i dont want as it should TAB out only in case of validation is successful. i think its because TAB is called before the VALIDATION .
$("#tgrid_name .k-grid-content").on('keydown', function(e) { // TAB OUT LOGIC ON KEYDOWN EVENT
if (e.keyCode === kendo.keys.TAB && $($(e.target).closest('.k-edit-cell'))[0]) {
...
i need your suggestion on how to address this concern , i tried adding TAB out logic in closeCell instead in KEYDOWN event but there i am not able to capture the key value. could you please provide me any pointers to implement this .