Sign up to our newsletter to receive updates on Winter CMS releases,
new features in the works, and much more.
We'll never spam or give
this address away.
Triggered in: Backend\Widgets\Lists.php
Provides opportunity to inject a custom CSS row class
If a value is returned from this event, it will be used as the value for the row class.
$value
is passed by reference so modifying the variable in place is also supported. Example usage:
Event::listen('backend.list.injectRowClass', function ($listWidget, $record, &$value) {
$value .= '-modified';
});
Or
$listWidget->bindEvent('list.injectRowClass', function ($record, $value) {
return 'strike';
});
Sign up to our newsletter to receive updates on Winter CMS releases,
new features in the works, and much more.
We'll never spam or give
this address away.
Published May 2, 2022
v1.2 with Laravel 9 Support Now Available For Testing!
Released February 15, 2022
11 UX/UI Improvements, 12 API Changes, 12 Bug Fixes, 6 Security Improvements, 8 Translation Improvements, 5 Community Improvements, 1 Dependency