You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is replaced by setLoadingPlaceHolderRowAttributes, but remains functional.
51
53
52
54
This method allows you to customise the attributes for the <tr> element used as a Placeholder when the table is loading. Similar to other setAttribute methods, this accepts a range of attributes, and a boolean "default", which will enable/disable the default attributes.
53
55
@@ -62,6 +64,22 @@ This method allows you to customise the attributes for the <tr> element us
62
64
63
65
```
64
66
67
+
### setLoadingPlaceHolderRowAttributes
68
+
69
+
Replaces setLoadingPlaceHolderWrapperAttributes
70
+
This method allows you to customise the attributes for the <tr> element used as a Placeholder when the table is loading. Similar to other setAttribute methods, this accepts a range of attributes, and a boolean "default", which will enable/disable the default attributes.
71
+
72
+
```php
73
+
public function configure(): void
74
+
{
75
+
$this->setLoadingPlaceHolderRowAttributes([
76
+
'class' => 'text-bold',
77
+
'default' => false,
78
+
]);
79
+
}
80
+
81
+
```
82
+
65
83
### setLoadingPlaceHolderIconAttributes
66
84
67
85
This method allows you to customise the attributes for the <div> element that is used solely for the PlaceholderIcon. Similar to other setAttribute methods, this accepts a range of attributes, and a boolean "default", which will enable/disable the default attributes.
0 commit comments