MojoProfile

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.

This thread is closed to new posts. You must sign in to post in the forums.
3/8/2018 11:28:18 AM
Gravatar
Total Posts 47

MojoProfile

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

 

3/8/2018 12:46:44 PM
Gravatar
Total Posts 2239

Re: MojoProfile

Hi Mari,

The data is stored in the mp_UserProperties table. Full documentation for this feature is located here.

Thanks,
Joe

You must sign in to post in the forums. This thread is closed to new posts.