backend.list.injectRowClass

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';
});

Usage

Globally

use Event;

Event::listen('backend.list.injectRowClass', function () {
    // Your event listener code goes here...
});

Triggers

Class or file Line
Backend\Widgets\Lists 1154
Copyright © 2024 Winter CMS