Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/details list event row key262 #351

Merged
merged 3 commits into from
Sep 25, 2024
Merged
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
11 changes: 10 additions & 1 deletion DetailsList/DetailsList/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,16 @@ export class FluentDetailsList implements ComponentFramework.ReactControl<IInput
if (raiseOnRowsSelectionChangeEvent && raiseOnRowsSelectionChangeEvent.raw === true) {
// When the row selection changes, raise an event
this.eventName = OutputEvents.OnRowSelectionChange;
this.eventRowKey = ids && ids.length > 0 ? ids[0] : null;
// Set the eventRowKey using the RecordKey of the first selected record
MaheshSripada marked this conversation as resolved.
Show resolved Hide resolved
const firstSelectedId = ids.length > 0 ? ids[0] : null;
if (firstSelectedId) {
const firstRecord = this.records[firstSelectedId];
if (firstRecord) {
this.eventRowKey = firstRecord.getValue(RecordsColumns.RecordKey)?.toString() || firstSelectedId;
}
} else {
this.eventRowKey = null;
}
this.notifyOutputChanged();
}
};
Expand Down
Loading