Kentico CMS 6.0 Controls

Appearance and styling

Appearance and styling

Previous topic Next topic Mail us feedback on this topic!  

Appearance and styling

Previous topic Next topic JavaScript is required for the print function Mail us feedback on this topic!  

The appearance of the UniView control is determined by the code of its templates and by certain other properties.

 

The following templates can be defined within the tags of the UniView control:

 

Template Name

Description

Sample Value

AlternatingItemTemplate

Code of the template used for alternating items.

<font color="#999999"><%# HTMLHelper.HTMLEncode( Convert.ToString(Eval("NodeAliasPath"))) %>

</font>

FirstItemTemplate

Code of the template used for the first item on every level.

 

FooterTemplate

Code of the template used for the footer.

</li>

</ul>

HeaderTemplate

Code of the template used for the header.

<ul>

<li>

ItemTemplate

Code of the template used for standard items.

<%# HTMLHelper.HTMLEncode( Convert.ToString(Eval("NodeAliasPath"))) %>

LastItemTemplate

Code of the template used for the last item on every level.

 

SeparatorTemplate

Code of the template used for separating items.

</li>

<li>

SingleItemTemplate

Code of the template used for displaying a single item.