Create category selection trees

 

+

Search Tips   |   Advanced Search

 

Use category selection trees to allow users to personalize menus.

  • Ensure the property...

    connect.businesslogic.module.ajpecatselect.class

    ...in the WCMConfigService.properties file is set to a value of...

    com.aptrix.pluto.CategoryProfileUpdaterModule

  • We cannot use category selection trees in a local rendering portlet.

 

Taxonomy element form

The main function of the taxonomy element is to display a category selection tree used to allow a user to select categories for menu personalization.

  • You configure the element by selecting either a taxonomy or a category as a start area.

  • Select a child depth from the start area and a parent level relative to the start area.

  • Select "Include Start" to display the start area. This option has no effect if the start area is a taxonomy.

  • There are two element design options available

    • One is rendered when the logged in user has selected the category that is to be displayed.

    • The other is rendered if the user has not selected the category.

    These element designs are rich text elements, and are used in a similar fashion to the navigator and menu elements.

The taxonomy element form example below creates a check box input form:

  • The category identity number is assigned to the "value" attribute in the input fields.

  • Check box input fields are created, assigning the "selectedCategories" value to the "name" attribute.

  • Hidden input fields are created, assigning the "visibleCategories" value to the "name" attribute.

 

Header:

 

Call the Category Profile Updater Module.

<PathCmpnt end="[Library]/[Site]/[SiteArea]/[Content]?MOD=AJPECatSelect' method=post> "start="<FORM action='" type="servlet"/>

Point to the page to go to after the user request has been processed The element will not render correctly if the path, "[Site area]/[Content]" is not valid.

<input type="hidden" value='<PathCmpnt type="servlet"/>[Library]/[Site]/[SiteArea]/[Content]' name="redirectURL">

 

Determine how a user's category profile is updated.

<input type="hidden" name="updateSourceProfile" value="true">

The "value" parameter is optional.

True

Permanently updates the user category profile.

False

Updates only the user's session profile.

 

Unselected element design:

This is used to display unselected items in the rendered category selection tree.

<input type="checkbox" name="selectedCategories" value="<Placeholder tag="idnum"/>"/> <IndentCmpnt offset="0" repeat=".."/> <Placeholder tag="name"/> <input type="hidden" name="visibleCategories" value="<Placeholder tag="idnum"/>"/> <br>

 

Selected element design:

This is used to display selected items in the rendered category selection tree.

<input type="checkbox" checked name="selectedCategories" value="<Placeholder tag="idnum"/>"/> <IndentCmpnt offset="0" repeat=".."/> <Placeholder tag="name"/> <input type="hidden" name="visibleCategories" value="<Placeholder tag="idnum"/>"/> <br>

 

Footer:

The footer contains the submit button.

<input type="submit" value="Set User Categories"></input> </form>

 

Indent element

This example uses the indent element tag. This can be used in the navigator and taxonomy elements. This tag represents an HTML/text string that should be repeated depending on the depth of a tree node being rendered in these elements.

In the above taxonomy element example, the indent element is used to render and repeat the "." string dependent on the depth of the node the element design is being applied to. It is possible to offset the repeat value by assigning an integer value to the "offset" attribute of the tag. For example, A current node depth of 5 and an offset value of -2 would render the repeat string three times. If the sum of the offset and the node depth is negative or 0, the repeat string is not rendered.

 

Element designs

The only difference between the unselected element design and the selected element design is that the check box input field in the selected element design has the "checked" attribute set.

 

User access

If using a taxonomy element, users must be given "Edit" access to their own user item to enable them to update their selected categories.

 

Using an URL to update user categories

We can use a URL as an alternative to using a category selection tree to update a user's selected categories:

http://host:port/wcm/connect/Site/SiteArea/SelectPage?MOD=AJPECatSelect &redirectURL=/wcm/connect/Site/SiteArea/Content&updateSourceProfile=false &selectedCategories=categoryID1,categoryID3 &visibleCategories=categoryID1,categoryID2,categoryID3,categoryID4

The "selectedCategories" and "visibleCategories" parameters have multiple values which are comma delimited. The categories specified in "selectCategories" should be a subset of "visibleCategories".

This URL could be used on a page in the form of a button to allow users to update their user categories. For example, You could create a button that would add the category "News" to a user's selected categories list.

 

Parent Topic

Taxonomy element