Hello,
I used the following code to generate items inside a RadComboBox
My problem is it seems that any items inside the <ItemTemplate> tag does not inherit or use the css styles defined on RadComboBox's Skin attribute. The items are generated but there's no background color changes (onmouseover) on the items.
is there a way for the items to be able to use the defined skin?
Thanks
I used the following code to generate items inside a RadComboBox
<
telerik:RadComboBox
ID
=
"SearchComboBox"
runat
=
"server"
Skin
=
"Office2007"
>
<
ItemTemplate
>
<%# DataBinder.Eval(Container.DataItem,"Name") %>
</
ItemTemplate
>
</
telerik:RadComboBox
>
SearchComboBox.DataSource = dataTable;
SearchComboBox.DataTextField = "Name";
SearchComboBox.DataValueField = "ID";
SearchComboBox.DataBind();
My problem is it seems that any items inside the <ItemTemplate> tag does not inherit or use the css styles defined on RadComboBox's Skin attribute. The items are generated but there's no background color changes (onmouseover) on the items.
is there a way for the items to be able to use the defined skin?
Thanks