diff --git a/plugins/fields/repeatable/params/repeatable.xml b/plugins/fields/repeatable/params/repeatable.xml index 31b65933e28d4..0f698b44199f9 100644 --- a/plugins/fields/repeatable/params/repeatable.xml +++ b/plugins/fields/repeatable/params/repeatable.xml @@ -30,6 +30,38 @@ + + + + + + + + + + diff --git a/plugins/fields/repeatable/repeatable.php b/plugins/fields/repeatable/repeatable.php index b5e3c289457ca..04d49b5f7e302 100644 --- a/plugins/fields/repeatable/repeatable.php +++ b/plugins/fields/repeatable/repeatable.php @@ -65,6 +65,11 @@ public function onCustomFieldsPrepareDom($field, DOMElement $parent, JForm $form $child->addAttribute('name', $formField->fieldname); $child->addAttribute('type', $formField->fieldtype); $child->addAttribute('readonly', $readonly); + + if (isset($formField->fieldfilter)) + { + $child->addAttribute('filter', $formField->fieldfilter); + } } $fieldNode->setAttribute('formsource', $fieldsXml->asXML());