-
Notifications
You must be signed in to change notification settings - Fork 14
[RHCLOUD-43454] Updating data-view docs and adding compound options for Expandable, Sticky and Draggable #575
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
base: main
Are you sure you want to change the base?
Conversation
22f15f0 to
cb0a2f4
Compare
| hasResizableColumns?: boolean; | ||
| /** Toggles expandable */ | ||
| isExpandable?: boolean; | ||
| /** Toogles sticky colums and headder */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small typos (Toogles, colums, headder)
| isExpandable?: boolean; | ||
| /** Toogles sticky colums and headder */ | ||
| isSticky?: boolean; | ||
| /** Toogles draggable rows */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo - Toogles
| ```typescript | ||
| interface ExpandableContent { | ||
| /** The ID of the row containing the expandable cell (must match the id property in the row data) */ | ||
| row_id: number; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are actually using camelCase in the code. I think this should be changed to rowId: number;
| /** The ID of the row containing the expandable cell (must match the id property in the row data) */ | ||
| row_id: number; | ||
| /** The column index (0-based) that should be expandable */ | ||
| column_id: number; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are actually using camelCase in the code. I think this should be changed to columnId: number;
As part of task RHCLOUD-43454
Assisted-by: Claude Code