Hello…
Making progress but, I was working on GRID component with event rowclick.
The following code is called but, I don’t get any event information passed.
OnRowclick(event): void {
console.log(‘worked on row click’); // works
var args = event.args; // event is undefined.
console.log(args);
// row’s bound index.
var boundIndex = args.rowindex;
console.log(boundIndex);
// row’s visible index.
var visibleIndex = args.visibleindex;
// right click.
var rightclick = args.rightclick;
// original event.
var ev = args.originalEvent;
}