-
Notifications
You must be signed in to change notification settings - Fork 132
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(platform): table filter enhancement #12771
Conversation
✅ Deploy Preview for fundamental-ngx ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Visit the preview URL for this PR (updated for commit 221e252): https://fundamental-ngx-gh--pr12771-11783-table-filter-e-e58ep12c.web.app (expires Sun, 22 Dec 2024 19:34:22 GMT) 🔥 via Firebase Hosting GitHub Action 🌎 Sign: 41b993ee8e451bd7c6770b342ce142dc886eacff |
Please use proper naming for the PRs. If this gets merged without the proper title we would need to manually fix the release notes |
@@ -468,6 +480,11 @@ export class TableService { | |||
this.buildSortRulesMap(); | |||
this.buildFilterRulesMap(); | |||
} | |||
|
|||
private getFieldName(field: string): string { |
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.
A private method should be prefixed by _
and should have typedocs annotations.
- Added '_', and annotation to private method
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.
Hi @khotcholava , I've noticed one problem - so far the info bar is displayed after changing the filter through UI or from code, but I have a case when I load the whole tableState from the session storage and it doesn't apply the filter info bar - it seems that the problem is related to because when we use |
@karolgromacki Please include the valid code example. It's easier for me to debug. |
@khotcholava fix the linting issues, make sure e2e/unit are not failing. Then we should review it. |
[#12677](#12677) Fixed an issue where using `semanticHighlighting` and `group` properties simultaneously in `fdp-table` caused unexpected behavior. Updated logic to ensure compatibility and proper rendering when these features are used together. Co-authored-by: khotcholava <[email protected]>
… theme/language automatically, add readonly property to form generator (#12739) * fix(platform): update settings generator docs and component to update theme/language automatically, add readonly property to form generator * fix: do not use autocomplete="off" for all inputs * fix: simplify readonly function
BREAKING CHANGE: remove inline SVG support * fix(core, platform): fix illustrated message in table * fix(core): remove inline SVG support for illustrated messages
* fix(core): fix form field spacing * test(platform): migrate e2e to unit
…into 11783-table-filter-enhancement
feat(core):
closes #11783
Before
After