Hello,
What is correct way to get ExpansionPanel's name that caused expand/collapse event? I would like to create general method to save expand panels expanded states.
By trial and error I have discovered that both expand and collapse event handlers seem to get some argument. This is argument is undocumented. My tests show that I can get ExpansionPanel name following way:
function expand(e){
var expandPanelName=$(e.item).attr("name");
console.log(expandPanelName);
}
Is this correct way to do it or can this be changed in future versions of Kendo?
Thanks
Mikko