If you have questions about using mojoPortal, you can post them here.
You may want to first review our site administration documentation to see if your question is answered there.
Hi Joe,
I had created a custom MojoProfile config file, and decided to use the Traits Option List (I attach the code in the following). It seems to me that Mojo Register.aspx does not save that data in the DB. (I could not find the corresponding data in MP_User table). May be it saves somewhere else?
<add name="Traits" type="CheckboxList" allowMarkup="false" resourceFile="ProfileResource" labelResourceKey="Traits" lazyLoad="false" requiredForRegistration="false" showOnRegistration="false" allowAnonymous="false" visibleToAnonymous="false" visibleToAuthenticated="true" visibleToUser="true" editableByUser="true" regexValidationExpression="" regexValidationErrorResourceKey="" onlyAvailableForRoles="" onlyVisibleForRoles="" defaultValue="funny,slick" includeHelpLink="true" > <OptionList> <Option value="funny" TextResourceKey="funny"></Option> <Option value="sunny" TextResourceKey="sunny"></Option> <Option value="money" TextResourceKey="money"></Option> <Option value="slim" TextResourceKey="slim"></Option> <Option value="slick" TextResourceKey="slick"></Option> </OptionList>
Thanks in advance
Mari
Hi Mari,
The data is stored in the mp_UserProperties table. Full documentation for this feature is located here.
Thanks, Joe