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 |
|---|---|---|---|
ActiveItemCSSClassString | "active" | Sets the CSS class for the active item. | |
Category_IDInteger | Not specified | Sets the category used to filter the item list. | |
DisplayModeNot specified | Not specified | Sets the list display mode. | |
HeadlineCSSClassString | "ItemTextListHeadline" | Sets the CSS class for the headline. | |
HeadlineTextString | Empty string ("") | Sets the headline text. | |
InnerTagString | "div" | "ul", "ol", "or "div"" | Sets the inner markup tag. |
Item_IDInteger | Not specified | Sets the item identifier. | |
ItemCSSClassString | "ItemTextListItem" | Sets the CSS class for list items. | |
ItemLinkTextString | "[Item Name]" | Sets the item-link text. | |
LinkCSSClassString | "ItemTextListLink" | Sets the CSS class for item links. | |
ShowActiveItemBoolean | true | true, false | Controls display of the active item. |
WrapperCSSClassString | "ItemTextListWrapper" | Sets the CSS class for the wrapper. | |
WrapperTagString | "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.