'showOnEmpty' => FALSE,
'parentColumnName' => 'parent_id',
'rowOptions' => function($model){
+ $options = [];
+ if($model->parent_id == null){
+ $options['style'] = 'border-top:2px solid #dcdcdc !important;';
+ }
if ((int)$model->active === 0) {
- return ['class' => 'text-muted', 'style' => 'background:#ffd1d1;'];
+ if (isset($options['style'])) {
+ $options['style'] .= 'background:#ffecec;';
+ } else {
+ $options['style'] = 'background:#ffecec;';
+ }
+ $options['class'] = 'text-muted';
+
}
- return [];
+ return $options;
},
'columns' => [