Thursday, January 14, 2016

Repeatable Form Field for Joomla

Joomla 3.2 added a nice feature introducing repeatable standard form field. Now it’s easy to add repeat fields just defined from the standard xml file of any joomla extensions. For each repeat box you can add multiple fields (joomla standard form fields ), means you can add fields under fields !

Now we will go more technical but will try our best to write it for new joomla developer.


<field name="list_templates" type="Repeatable" icon="list" description="PLG_TINY_FIELD_TEMPLATE_FIELD_ELEMENTS_DESC"
label="PLG_TINY_FIELD_TEMPLATE_FIELD_ELEMENTS_LABEL">
<fieldset hidden="true" name="list_templates_modal" repeat="true">
<field name="logoFile1" class="" type="media" default="" label="TPL_PROTOSTAR_LOGO_LABEL" description="TPL_PROTOSTAR_LOGO_DESC" />
</fieldset>
</field>

No comments:

Post a Comment