Hi,
In my Skin file I've amended the standard skin with the following:
On one of my pages I want to override the MaxHeight property to be 100. I've tried the following but it always displays 300px
Any ideas?
In my Skin file I've amended the standard skin with the following:
<telerik:RadComboBox Skin="MySkin" EnableEmbeddedSkins="false" AllowCustomText="true" MaxHeight="300" runat="server" /> |
On one of my pages I want to override the MaxHeight property to be 100. I've tried the following but it always displays 300px
<telerik:RadComboBox ID="RadComboBoxProducts" DataSourceID="odsProducts" Filter="Contains" DataTextField="ProductName" DataValueField="ProductID" |
Width="205" DropDownWidth="300" MaxHeight="100" runat="server"> |
</telerik:RadComboBox> |
Any ideas?