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
570
WebDialogWindow and WebCombo with UpdatePanel bug
posted

I use v10.2.20102.2101

I have a simple webpage with a  : ScriptManager, UpdatePanel,WebDialogWindow,button and webCombo

When i have the combo and WebDialogWindow  in the page and i run my webpage i does'nt see the page.

If i delete the WebDialogWindow  my page work  or if i delete the combo my page work. the both control in same page do the problem.

What is the solution?

Here is my code of webpage doesn't work with webcombo:

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="wfBug_Dialog.aspx.vb" Inherits="WebPortailCegertec.wfBug_Dialog" %>
<%@ Register assembly="Infragistics35.Web.v10.2, Version=10.2.20102.2101, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.Web.UI.LayoutControls" tagprefix="ig" %>
<%@ Register assembly="Infragistics35.WebUI.WebCombo.v10.2, Version=10.2.20102.2101, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.WebUI.WebCombo" tagprefix="igcmbo" %>
<%@ Register assembly="Infragistics35.WebUI.UltraWebGrid.v10.2, Version=10.2.20102.2101, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.WebUI.UltraWebGrid" tagprefix="igtbl" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title></title>
    <link href="../../Styles/StyleChargement.css" rel="stylesheet" type="text/css" />
     <link href="../../Styles/controle.css" rel="stylesheet" type="text/css"/>
</head>

<body>
    <form id="form1" runat="server"  enableviewstate="True">
        <!-- Le ScriptManager est nécéssaire pour faire fonctionner le (UpdatePanel ou WebDialogWindow)  -->
        <asp:ScriptManager ID="scriptMgr" runat="server" />
 
        <!-- Cette section est miss a jours sur le PostBack -->
        <asp:UpdatePanel ID="updatePnl" runat="server">
            <ContentTemplate>
           
                <fieldset>
                <legend>Panel Title</legend>

                    <igcmbo:WebCombo ID="WebCombo1" runat="server" Version="4.00">
                        <ExpandEffects ShadowColor="LightGray" />
                        <Columns>
                            <igtbl:UltraGridColumn>
                                <header caption="Column0">
                                </header>
                            </igtbl:UltraGridColumn>
                        </Columns>
                        <DropDownLayout Version="4.00">
                            <framestyle height="130px" width="325px">
                            </framestyle>
                        </DropDownLayout>
                    </igcmbo:WebCombo>
           
                    <asp:Button ID="btnPrint" runat="server" OnClientClick="btnPrint_Click"
                        Text="Imprimer" Width="133px" />
                    <!-- Code pour avoir le message de : chargement en cours -->
                    <asp:UpdateProgress ID="siteUpdateProgress" runat="server"
                        AssociatedUpdatePanelID="updatePnl" DisplayAfter="100" DynamicLayout="true">
                        <ProgressTemplate>
                            <div class="Sample5PageUpdateProgress">
                                <asp:Image ID="ajaxLoadNotificationImage" runat="server"
                                    AlternateText="[image]" ImageUrl="~/images/ajax-loader.gif" />
                                <br />
                                <span style="color:Black">Chargement en cours... &nbsp;</span>
                            </div>
                        </ProgressTemplate>
                    </asp:UpdateProgress>
        
                </fieldset>
            </ContentTemplate>
        </asp:UpdatePanel>


        <ig:WebDialogWindow ID="wdwMessage" runat="server" Height="300px"
            Width="400px" WindowState="Hidden">
        </ig:WebDialogWindow>


    </form>
</body>
</html>

 

Parents
No Data
Reply
  • 24497
    posted

    Hi,

    I copied those codes to a website and it seemed to work without problems. If I removed WindowState="Hidden" from dialog, then dialog appeared as well. Though, I did not have css files used by your page. Try to temporary remove those link and test behavior without external custom css classes.

Children
No Data