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: v5/field-types.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -610,7 +610,7 @@ $repeater->setLimit(10);
610
610
611
611
### Controls
612
612
613
-
You can hide controls for a repeater if needed. For example, a short repeater field group may show linted controls. You can define what controls are shown:
613
+
You can hide controls for a repeater if needed. For example, a short repeater field group may show limited controls. You can define what controls are shown:
614
614
615
615
```php
616
616
$repeater->hideClone();
@@ -621,6 +621,17 @@ $repeater->hideContract();
621
621
$repeater->hideClone();
622
622
```
623
623
624
+
Or, show them again:
625
+
626
+
```php
627
+
$repeater->showClone();
628
+
$repeater->showMove();
629
+
$repeater->showFlip();
630
+
$repeater->showClear();
631
+
$repeater->showContract();
632
+
$repeater->showClone();
633
+
```
634
+
624
635
### Tabs
625
636
626
637
You can add tabs to repeaters as well using the Tabs API.
0 commit comments