Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -1065,6 +1065,10 @@ export class GridComponent
if (this.selectable) {
totalWidthSticky += 41;
}
// ADD THIS BLOCK: include inline action button column width if present
if (this.inlineActionButtons.length > 0) {
totalWidthSticky += this.floatingButtonsWidth;
}
// Hide the columns that are hidden by default
const hiddenFields = this.fields.filter((field) => field.hiddenByDefault);
hiddenFields.forEach((field) => {
Expand Down Expand Up @@ -1298,6 +1302,10 @@ export class GridComponent
column.width = MIN_COLUMN_WIDTH;
}
});

if (this.inlineActionButtons.length > 0) {
totalWidthSticky += this.floatingButtonsWidth;
}
}

/** Restore all columns visibility and size when reset the layout of the grid */
Expand Down