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
215
ASP.NET - WebHierarchicalDataGrid - Ajax Controls with Multiple Forms
posted

Hi, we have a problem with ajax controls using WebHierarchicalDataGrid ( Version 10.3.20103.1013 )

Our pages is encapsulated into master page with two form inside, when update, create, delete row from datagrid is always used the first form "frmLoginSilente"  instead of the "formDataGrid" :


<%@ Register Assembly="Infragistics4.Web.v10.3, Version=10.3.20103.1013, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" Namespace="Infragistics.Web.UI" TagPrefix="ig" %>
<%@ Register Assembly="Infragistics4.Web.v10.3, Version=10.3.20103.1013, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" Namespace="Infragistics.Web.UI.GridControls" TagPrefix="ig" %>
<%@ Register assembly="Infragistics4.Web.v10.3, Version=10.3.20103.1013, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.Web.UI.DataSourceControls" tagprefix="ig" %>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="frmLoginSilente" action="LoginSilente.aspx" method="post">
        form login
    </form>

    <form id="formDataGrid" runat="server">
        <div>
            <ig:WebHierarchicalDataSource ID="dgGer_src" runat="server" RootDataViewID="sqlTbRischio_liv1_DefaultView">
                ....
                ....
            </ig:WebHierarchicalDataSource>

            <ig:WebHierarchicalDataGrid ID="dgRischio" runat="server"
               ....
               ....
            </ig:WebHierarchicalDataGrid>
        </div>
    </form>
</body>
</html>


Thanks a lot.


Roxanne

Parents Reply Children
No Data