I want to add two checkboxes to users. How do I do this, or is it possible?
I need it on a free solution with the extranet/intranet module.
I want to add two checkboxes to users. How do I do this, or is it possible?
I need it on a free solution with the extranet/intranet module.
Take a look at Custom fields on http://manual.dynamicweb-cms.com/Dynamicweb-On-line-Manual/Modules/Users/Advanced-configuration.aspx.
Best regards,
Mikkel
Ok, thank you very mutch.
I have Created checkboxes with systemtag AccesUser_Email, and want these to be editable when loggin in via the extranet/intranet user module.
I have tried this <!--@UserManagement:User.AccessUser_Email.Input-->
But that doesn´t work?
How do I do this correctly?
Hi Hans,
There is a loop which renders all custom fields for the user in the extranet module:
<!--@LoopStart(UserManagement:User.CustomFields)-->
<tr>
<th align="left"><!--@CustomField.Name-->: </th>
<td><!--@CustomField.Control--></td>
</tr>
<!--@LoopEnd(UserManagement:User.CustomFields)-->
Also for the specific custom field it's name should be:
<!--@UserManagement:User.CustomField.AccessUser_Email.Input-->
You must be logged in to post in the forum