Skip to content

Commit

Permalink
feat: Add a clicked rowKey argument to the checkBetween event.
Browse files Browse the repository at this point in the history
  • Loading branch information
jajugoguma committed Oct 25, 2023
1 parent 14d9c2d commit 065ae44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/toast-ui.grid/src/dispatch/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ export function setCheckboxBetween(
setRowsAttributeInRange(store, 'checked', value, range);
setCheckedAllRows(store);

const gridEvent = new GridEvent({ rowKeys: checkStateChangedRowkeys });
const gridEvent = new GridEvent(eventArgs);

eventBus.trigger(value ? 'check' : 'uncheck', gridEvent);
}
Expand Down

0 comments on commit 065ae44

Please sign in to comment.