17 Nov 2023 03:45 PM
const myRowSelectionChangedListener = (
selectedRows: Record<number, boolean>,
selectedRowsData: unknown[],
trigger: 'user' | 'internal'
) => {
console.log('row selection obj', selectedRows);
console.log('row selection data', selectedRowsData);
console.log('trigger', trigger);
};
onRowSelectionChange?: (rows: unknown[]) => void;
Surely I'm missing something. What is it?
Gil.
Solved! Go to Solution.
20 Nov 2023 09:40 AM
Hi @gilgi,
The signature of this prop was changed in the latest version 0.107.0; see https://developer.dynatrace.com/whats-new/release-notes/design-system-preview-changelog.
Please update your dependencies using npm run update
to be in sync with the documentation again.