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
Copy file name to clipboardExpand all lines: docs/datatable/available-methods.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,9 +18,21 @@ public function configure(): void
18
18
}
19
19
```
20
20
21
+
### useComputedPropertiesDisabled
22
+
23
+
If you have published the Views **prior to v3.4.5**, and do not wish to remove the published views, then you should add the following call, which will disable the new Computed Properties behaviour. Note that publishing the views is not recommended!
24
+
25
+
```php
26
+
public function configure(): void
27
+
{
28
+
$this->useComputedPropertiesDisabled();
29
+
}
30
+
```
31
+
32
+
21
33
## Attributes
22
34
23
-
Documentation for Data Table Styling/Attributes is now: <ahref="https://rappasoft.com/docs/laravel-livewire-tables/v3/columns/styling"aria-label="Documentation for Data Table Styling" >Here</a>
35
+
Documentation for Data Table Styling/Attributes is now: [Here](../datatable/styling)
The strong recommendation is to not publish the views for this package. The vast majority of elements can be customised using methods within the package.
9
+
10
+
See "Available Methods" in most sections for details, some examples:
11
+
[DataTable Styling](../datatable/styling)
12
+
[Bulk Actions Styling](../bulk-actions/styling)
13
+
14
+
### Previously Published Views
15
+
16
+
The strong recommendation is to not publish the views for this package. If you have published the views prior to v3.4.5, and do not wish to remove these, then you should add the following method, to disable the newer (more efficient) behaviour:
0 commit comments