Hi,
I configured a "action column" inside my kendo Grid, with a kendoMenu that allow me to do some tasks on my row item.
I want to run an action directly without selecting the row (because when I select the row, I do some other actions that I do not want to do from the action menu)
My code: http://dojo.telerik.com/otEQI/16
I need to prevent "rowchange" event from a kendoMenu change event that I set inside a columnTemplate.
I tought I could do something inside the menuChange event (like e.preventDefault()), but it happen AFTER the rowchange event!
How can I prevent the rowChange to raise when I click on my kendoMenu item?
Thank you.