-
-
Notifications
You must be signed in to change notification settings - Fork 344
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
V3 - Add Custom Attributes for Bulk Actions #1564
Merged
lrljoe
merged 11 commits into
rappasoft:develop
from
LowerRockLabs:v3-AddCustomAttributesForBulkActions
Dec 4, 2023
Merged
V3 - Add Custom Attributes for Bulk Actions #1564
lrljoe
merged 11 commits into
rappasoft:develop
from
LowerRockLabs:v3-AddCustomAttributesForBulkActions
Dec 4, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #1564 +/- ##
=============================================
+ Coverage 88.99% 89.07% +0.07%
- Complexity 1268 1276 +8
=============================================
Files 96 96
Lines 3008 3030 +22
=============================================
+ Hits 2677 2699 +22
Misses 331 331 ☔ View full report in Codecov by Sentry. |
lrljoe
added a commit
that referenced
this pull request
Dec 4, 2023
## [v3.1.4] - 2023-12-04 ### New Features - Add capability to hide Column Label by @lrljoe in #1512 - Add capability to set a custom script path for the scripts/styles by @lrljoe in #1557 - Added rowsRetrieved Lifecycle Hook, expanded documentation for Lifecycle Hooks ### Bug Fixes - Added missing tailwind background colour class for when hovering over the clear button in dark mode by @slakbal in #1553 - Fixed extraneous space in config.php by @viliusvsx in in #1577 - Changed table default vertical overflow to auto by @dmyers in #1573 - Fix footer rendering issue with extra td displayed depending on bulk action statuses ### Tweaks - Create additional Exception Classes (NoColumnsException, NoSearchableColumnsException, NoSortableColumnsException) - Revert previous splitting of JS Files - Add capability to customise Bulk Actions Styling with tests by @lrljoe in #1564 - TH Classes - TH Checkbox Classes - TD Classes - TD Checkbox Classes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds several new methods for customising the look & feel of the Bulk Actions "th" "td" and associated checkboxes, methods documented, but summarised as follows:
setBulkActionsThAttributes(array $bulkActionsThAttributes)
You may pass an array to this method, which allows you to pass Custom Attributes into the table header
setBulkActionsThCheckboxAttributes(array $bulkActionsThCheckboxAttributes)
You may pass an array to this method, which allows you to pass Custom Attributes into the Select All/None checkbox in the Table Header
setBulkActionsTdAttributes(array $bulkActionsTdAttributes)
You may pass an array to this method, which allows you to pass Custom Attributes into the td containing the Bulk Actions Checkbox for a row
setBulkActionsTdCheckboxAttributes(array $bulkActionsTdCheckboxAttributes)
You may pass an array to this method, which allows you to pass Custom Attributes into the Bulk Actions Checkbox for the row
### Currently pending test creation.
All Submissions:
New Feature Submissions:
Changes to Core Features: