Could someone offer some incite into what could be causing this. I have created a 'User Control' with multiple WebDropDown controls that are populated via IEnumerable's. I then placed one copy of my User Control on a WebTab (two tabs total, one User Control on each). The problem I'm experiencing is that when I run my web site and click on the Webdropdowns the sometimes stick and don't drop down until you click on them three times. For some reason that's the magic number! Not all the controls stick (it vary's from tab to tab.)
Note: I am creating the IEnumerable from Linq to Sql query's. I know they are not the issue since I have another web site that uses the the WebDropDown's and populates them exactly the same way. The only difference is that the webdropdowns exist on a single page.
An easy way to reproduce this is to create a user control with two Webdropdown's on them and then throw that control on a WebTab.
Thanks
Dave.
Hello Dave,
This property controls whether the dropdown container element will be a direct first child of the source element - in the DOM ; or will be detached from it, absolutely positioned and its position calculated as soon as the container is about to be opened.
Please refer to the online documentation regarding this:
http://help.infragistics.com/NetAdvantage/ASPNET/2010.3?page=Infragistics4.Web.v10.3~Infragistics.Web.UI.ListControls.WebDropDown~EnableDropDownAsChild.html
Let us know if you need further assistance regarding this.
That Seems to have fixed it! What exactly does the property "EnableDropDownAsChile = false" do?
I really appreciate you helping with this issue, to be totally honest I thought this was going to be a tough one to solve.
Have you set the property EnableDropDownAsChild = false ?
Please make sure that you have done this.
I was able to reproduce the issue when reload the page after postback and click the WebDropDown inside the currently inactive WebTab item.
Hope hearing from you.