cellSelected(args) {
if (
args.selectedRowCellIndex.length > 1 &&
(this.grid.editModule.getBatchChanges() as any).changedRecords.length
) {
console.log(
(this.grid.editModule.getBatchChanges() as any).changedRecords
);
}
} |
[App.Vue]
cellSelected(args) {
if (
args.selectedRowCellIndex.length > 1 &&
(this.grid.editModule.getBatchChanges() as any).changedRecords.length
) {
console.log(
(this.grid.editModule.getBatchChanges() as any).changedRecords
);
}
} |