Hi,
I am trying to use onChange event , it triggers when any panel is moved. I want to get all the ids of all the panels and their position so that I can update the position in db.
its args is giving undefined.
in both the cases getting undefined
onChange(args: ChangedEventArgs) {
console.log("Change event triggered",args); //undefined
}
onChange(args: any) {
console.log("Change event triggered",args); //undefined
}