Hi,
I am using Aurelia with Kendo UI. I tried the context menu. I am having problems in calling a function from the select. It is unable to locate that method.
$("#menu").kendoContextMenu({
orientation: orientation,
target: "#listview-context-menu",
filter: ".product",
animation: {
open: { effects: "fadeIn" },
duration: 500},
select: function (e) {
this.doAction(); // this function is not being recognized.
}
});
Can you please help?