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
65
WebCombo causes detailsView to disappear on drop-down-scroll??
posted

I am using a WebCombo control with "extended" type-ahead mode and ajax in a template field of a detailsview Control nested in a WARP.

when I enter the detailsview edit mode for any record, the fields are displayed correctly, typing in the WebCombo, provides type ahead functionality asa expected, if I click the drop down arrow, the drop-down list is displayed correctly, if I scroll the drop-down list with the scrollbar, my details view is erased, and the only control visible on the page is the web control.

at the same time a javascript error is displayed (" 'srcElement' is null or not an object. ") 

this is how my Web Combo is configured...

----------------------------

<igcmbo:WebCombo ID="wcEditCelebrity" runat="server" BackColor="White" BorderColor="Silver"

BorderStyle="Solid" BorderWidth="1px" DataSourceID="criteriaSQLDatasourceCelebrity"

DataTextField="CelebrityName" DataValueField="CelebrityID" DropImage1="images/dropdown.jpg"

DropImage2="images/dropdown.jpg" DropImageXP1="images/dropdown.jpg" DropImageXP2="images/dropdown.jpg"

Editable="True" ForeColor="Black" OnDataBound="wcEditCelebrity_DataBound" SelBackColor="DarkBlue"

SelForeColor="White" Version="4.00" Width="298px" EnableAppStyling="False" EnableXmlHTTP="True" HideDropDowns="False">

<Columns>

<igtbl:UltraGridColumn BaseColumnName="CelebrityID" DataType="System.Int32" IsBound="True"

Key="CelebrityID">

<header caption="CelebrityID"></header>

</igtbl:UltraGridColumn>

<igtbl:UltraGridColumn BaseColumnName="CelebrityName" IsBound="True" Key="CelebrityName">

<header caption="CelebrityName">

<RowLayoutColumnInfo OriginX="1"></RowLayoutColumnInfo>

</header>

<footer>

<RowLayoutColumnInfo OriginX="1"></RowLayoutColumnInfo>

</footer>

</igtbl:UltraGridColumn>

</Columns>

<ExpandEffects ShadowColor="LightGray" Type="Fade" />

<DropDownLayout BaseTableName="" BorderCollapse="Separate" DropdownWidth="300px"

RowHeightDefault="20px" RowSelectors="No" Version="4.00" XmlLoadOnDemandType="Accumulative">

<HeaderStyle BackColor="LightGray" BorderStyle="Solid">

<BorderDetails ColorLeft="White" ColorTop="White" WidthLeft="1px" WidthTop="1px" />

</HeaderStyle>

<FrameStyle BackColor="Silver" BorderStyle="Ridge" BorderWidth="2px" Cursor="Default"

Font-Names="Verdana" Font-Size="10pt" Height="130px" Width="300px">

</FrameStyle>

<RowStyle BackColor="White" BorderColor="Gray" BorderStyle="Solid" BorderWidth="1px">

<BorderDetails WidthLeft="0px" WidthTop="0px" />

</RowStyle>

<SelectedRowStyle BackColor="DarkBlue" ForeColor="White" />

</DropDownLayout>

</igcmbo:WebCombo>

----------------------------

any ideas what may be causing this?