CatalogItemTextLinkListControl

CatalogItemTextLinkListControl creates a category-based list of sibling-item links to item-detail pages. It was introduced in v2.11.

Configurable properties

Property Default Valid values or format Effect
ActiveItemCSSClass
String
"active"   Sets the CSS class for the active item.
Category_ID
Integer
Not specified   Sets the category used to filter the item list.
DisplayMode
Not specified
Not specified   Sets the list display mode.
HeadlineCSSClass
String
"ItemTextListHeadline"   Sets the CSS class for the headline.
HeadlineText
String
Empty string ("")   Sets the headline text.
InnerTag
String
"div" "ul", "ol", "or "div"" Sets the inner markup tag.
Item_ID
Integer
Not specified   Sets the item identifier.
ItemCSSClass
String
"ItemTextListItem"   Sets the CSS class for list items.
ItemLinkText
String
"[Item Name]"   Sets the item-link text.
LinkCSSClass
String
"ItemTextListLink"   Sets the CSS class for item links.
ShowActiveItem
Boolean
true true, false Controls display of the active item.
WrapperCSSClass
String
"ItemTextListWrapper"   Sets the CSS class for the wrapper.
WrapperTag
String
"div" "ul", "ol", "or "div"" Sets the wrapper markup tag.

SitePages.config example

The following example loads CatalogItemTextLinkListControl.ascx and applies the documented literal defaults. The following properties are omitted because they do not have documented literal defaults: Category_ID, DisplayMode, HeadlineText, Item_ID.

<Control src="CatalogItemTextLinkListControl.ascx"
         ActiveItemCSSClass="active"
         HeadlineCSSClass="ItemTextListHeadline"
         InnerTag="div"
         ItemCSSClass="ItemTextListItem"
         ItemLinkText="[Item Name]"
         LinkCSSClass="ItemTextListLink"
         ShowActiveItem="true"
         WrapperCSSClass="ItemTextListWrapper"
         WrapperTag="div" />

Add this <Control> element to the appropriate page placeholder as described in The SitePages.config File.

Inherited properties

CatalogItemTextLinkListControl inherits listing behavior from ListingControl and shared conditions from CyberStoreBaseControl.


This site uses Just the Docs, a documentation theme for Jekyll.