-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat: Switch from handleRowClicked to defaultColumn #1590
base: release-0.2.0
Are you sure you want to change the base?
Conversation
dhaselhan
commented
Jan 3, 2025
•
edited
Loading
edited
- Set linkCell Renderer and link props on default column and remove row click.
- Update cell renderers to support links if present
- Apply to lots of tables
- Move test files to be closer to their components
18ec1ec
to
9ed3d9c
Compare
|
||
const defaultColDef = useMemo( | ||
() => ({ | ||
floatingFilter: false, |
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.
should we be disabling floating filter here?
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.
Good catch, definitely not. Removed and double checked the other changes to make sure I didnt accidentally turn them off elsewhere.
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.
Everything looks good, just for compliance reporting floating filter is not visible.
* Set linkCell Renderer and link props on default column and remove row click. * Update cell renderers to all support links if present * Apply to lots of tables * Move test files to be closer to their components
* Remove disabling of filters on compliance reports
a96a64f
to
1e3e2a5
Compare