Gets or sets the items template used for C1ComboBox.

Namespace:  C1.Web.UI.Controls.C1ComboBox
Assembly:  C1.Web.UI.Controls.3 (in C1.Web.UI.Controls.3.dll)

Syntax

C#
[BrowsableAttribute(false)]
[BindableAttribute(false)]
[TemplateContainerAttribute(typeof(C1ComboBoxItem))]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)]
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public virtual ITemplate ItemsTemplate { get; set; }
Visual Basic (Declaration)
<BrowsableAttribute(False)> _
<BindableAttribute(False)> _
<TemplateContainerAttribute(GetType(C1ComboBoxItem))> _
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)> _
<PersistenceModeAttribute(PersistenceMode.InnerProperty)> _
Public Overridable Property ItemsTemplate As ITemplate
	Get
	Set

Examples

Copy CodeC#
<cc1:C1ComboBox ID="c1ComboBox2" runat="server">
                <ItemsTemplate>
                     Template content
                </ItemsTemplate>
            </cc1:C1ComboBox>

See Also