I have some webcombo controls with lists of data in them.
The issue is that when the user scrolls to the end of the list, the scrolling jumps to the page instead of staying inside the combo control. Is there a way to prevent this?
Hi Daryl007,
I am not sure if I follow your scenario totally. What do you mean by a list of data? Do you mean when you scroll down to the bottom of the grid that the focus is lost?
With this idea I developed a simple test sample that is bound to Northwind. When I scroll to the bottom of the grid of the WebCombo, the focus is maintained.
I did this test with the latest service release 2011.1 (20111.2135).
Please let me know if you need any additional assistance regarding this matter.
I am binding a dataset, a list of States, to a webcombo. (settings for this webcombo further below)
So a user click the drop down arrow and uses the middle scroll wheel to move the content list up and down. What happens here is that when the get to the top or bottom of the list the focus islost and goes back to the asp.net page which starts scrolling up and down. so it is losing focus.
Your example did not help me out.
<igcmbo:WebCombo ID="wcPerBirthState" runat="server" BorderStyle="Solid" BorderWidth="1px" ComboTypeAhead="Simple" DisplayValue="State" Editable="True" EnableAppStyling="True" EnableTheming="False" StyleSetName="SCSweb" TabIndex="9" Version="4.00" Width="179px" DataTextField="State" DataValueField="State" SelBackColor="" SelForeColor=""> <ExpandEffects ShadowColor="LightGray" /> <Columns> <igtbl:UltraGridColumn BaseColumnName="State_Abbr" Key="State_Abbr"> <Header Caption="State"> </Header> </igtbl:UltraGridColumn> </Columns> <DropDownLayout AutoGenerateColumns="False" ColHeadersVisible="No" ColWidthDefault="180px" DropdownWidth="180px" RowSelectors="No" Version="4.00" XmlLoadOnDemandType="Accumulative" Section508Compliant="True"> <FrameStyle Height="130px" Width="180px"> </FrameStyle> </DropDownLayout> </igcmbo:WebCombo>