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
1329
WebDropDown NOT expanding.
posted

I have bound a DataSet to the WebDropDown and that is working ok. I can even set the SelectedValue or SelectedItemIndex. However, If I click the arrow in the WebDropDown it does not expand. Am I not setting a specific property?

<ig:WebDropDown ID="WebDropDown1"
runat="server"
Width="532px"
AutoPostBack="True"
DropDownAnimationDuration="200"
DropDownContainerMaxHeight="200px"
EnableLoadOnDemand="True">
<AutoPostBackFlags SelectionChanged="On" ValueChanged="On" />
</ig:WebDropDown>

Parents
  • 1329
    posted

    When I view the PageSource, I can see the 12 values for the DropDownList. It is just not expanding for some reason. I have changed my code to the following but it is still the same result...

    <ig:WebDropDown ID="WebDropDown1" runat="server"
    style="Z-INDEX: 243; left: 144px; position: absolute; TOP: 255px" Width="600px"
    TextField="description" DropDownContainerHeight="200px"
    EnableViewState="true" EnableDropDownAsChild="false" DropDownContainerWidth="200px"
    DropDownAnimationType="EaseOut" EnablePaging="True" PageSize="12"
    StyleSetName="Default" StyleSetPath="../ig_res/">
    </ig:WebDropDown>

    Code behind:

    Me.WebDropDown1.DataSource = myDataSetName.Tables(0)
    Me.WebDropDown1.TextField = "description"
    Me.WebDropDown1.ValueField = "ID"
    Me.WebDropDown1.DataBind()

     

Reply Children