Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/pluggableWidgets/datagrid-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

### Fixed

- We fixed an issue where rows incorrectly showed a pointer cursor when using checkbox selection. Now the clickable cursor only appears when selection method is set to row click or when a row has an onClick action.

- We fixed an issue with Data export crashing on some Android devices.

## [3.8.1] - 2026-02-19
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ function isSettingsStorageEnabled(props: DatagridContainerProps): boolean {
}

function isInteractive(props: DatagridContainerProps): boolean {
return props.itemSelection !== undefined || props.onClick !== undefined;
const hasRowClickSelection = props.itemSelection && props.itemSelectionMethod === "rowClick";
const hasOnClickAction = props.onClick !== undefined;
return hasRowClickSelection || hasOnClickAction;
}

function selectionType(props: DatagridContainerProps): SelectionType {
Expand Down
Loading
Loading