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
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -608,6 +608,19 @@ You can also limit the number allowed using the `setLimit()` method.
608
608
$repeater->setLimit(10);
609
609
```
610
610
611
+
### Controls
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:
614
+
615
+
```php
616
+
$repeater->hideClone();
617
+
$repeater->hideMove();
618
+
$repeater->hideFlip();
619
+
$repeater->hideClear();
620
+
$repeater->hideContract();
621
+
$repeater->hideClone();
622
+
```
623
+
611
624
### Tabs
612
625
613
626
You can add tabs to repeaters as well using the Tabs API.
0 commit comments