Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
57
webdropdown max height issue in latest service release
posted

Hi

Today I upgrade my website from 9.1.20091.2087 to 9.1.20091.2101. There is an issue for setting max height. Previously it takes max height only when the items bound more than 8. For less than 8 it exactly takes its container height. But after upgradation it takes maximum height always. Why this change occurs? Existing working code is fine before. I need immediate help in this regard.

 

 

 

 

 

 

 

 

<ig:WebDropDown DisplayMode="DropDownList" Enabled="false" DropDownAnimationType

="Bounce"

 

 

ID="uwmSample" Width="80px" AutoPostBack="true"

 

 

CurrentValue="AAA" DropDownContainerWidth="78px" DropDownContainerMaxHeight

="139px"

 

 

runat="server" StyleSetName

="Office2007Blue">

 

 

<AutoPostBackFlags SelectionChanged="On"

/>

 

 

<ClientEvents

/>

 

 

</ig:WebDropDown

>

Thanks

Sridhar

 

 

Parents
  • 24671
    Suggested Answer
    posted

    Hi Sridhar,

    This is not related to the DropDownContainerMaxHeight, but the DropDownContainerHeight property. It's default value is 200px, if you want it to grow relative to items size, you should set it to 0px, i.e.:

    DropDownContainerHeight="0px".

    Previously, it was always assumed that height is defined by the total number of items.

    Thanks,

    Angel 

Reply Children
No Data