How to add drop down list in user register new account page? - Joomla! Forum - community, help and support
hi,
i need add 2 drop down list components/com_users/models/forms/registration.xml options (a) "create new instance", , (b) "user existing instance" customisation. right can add <field type="text" , don't know type can make drop down list, , how add option values in field. appreciate helps , examples on registration.xml.
thank you.
kind regards,
j
i need add 2 drop down list components/com_users/models/forms/registration.xml options (a) "create new instance", , (b) "user existing instance" customisation. right can add <field type="text" , don't know type can make drop down list, , how add option values in field. appreciate helps , examples on registration.xml.
thank you.
kind regards,
j
hi, may refer sample below pulled mod_articles_archive.xml (frontend archive module)
code: select all
<field
name="cache"
type="list"
default="1"
label="com_modules_field_caching_label"
description="com_modules_field_caching_desc"
>
<option value="1">jglobal_use_global</option>
<option value="0">com_modules_field_value_nocaching</option>
</field>
Comments
Post a Comment