In my skin file i have the following.
<
telerik:RadComboBox runat="server" AppendDataBoundItems="true" >
<Items>
<telerik:RadComboBoxItem Text="Select" Value="" />
</Items>
</telerik:RadComboBox>
This works fine when I am using databound items to append to the drop down. I have come to scenario where I need to just use some static items in my control page. ie
<telerik:RadComboBox ID="Arrangement" runat="server">
<Items>
<telerik:RadComboBoxItem Text="Service Contract" Value="Service Contract" />
<telerik:RadComboBoxItem Text="Contract" Value="Contract" />
</Items>
</telerik:RadComboBox>
I would like to return a result as
>Select
>Service Contract
>Contract
problem is that when I use the <items> tag in my skin file, I can't use it again in my code page.
Is there some other default value I can so as to avoid an empty drop down box on all my pages. I like seeing select as the default vs blank or the first items in lists.
mac