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
495
Webdatagrid - webpage alert pop up - issue
posted

Hi,

Migrating to version 13.1.20131.1012 from 7.3.

Need your inputs on this scenario.

I have a page which has two webdatagrids, on clicking save button, opens up a page which has one webdatagrid. 

And again, on clicking save button on this page, webpage alert pop up message comes up. 

when this pop up comes, webdatagrid is not shown (at the background), and on clicking ok on that alert pop up, webdatagrid shows up.

Please note that there are few more controls on this page, all are seen in background except this webdatagrid.

Please let me know wht iam missing and let me know what must be done to make my grid visible at the background even if pop up appears.

I dont check (!Page.IsPostBack) in my Page load.

My master page has EnablePartialRendering="true".

webdatagrid design

<asp:ScriptManagerProxy ID="ScriptManager1" runat="server"></asp:ScriptManagerProxy>
<asp:UpdatePanel ID="m_warpSelectedMixMembersGrid" runat="server" >
<ContentTemplate>
<asp:Button ID="cmdSelRefresh" runat="server" Text="Refresh" CssClass="RefreshButton" />
<asp:HiddenField ID="checkPostBack" runat="server" />
<igtbl:WebDataGrid runat="server" ID="m_grdSelectedMixMembers" AutoGenerateColumns="False"
EnableViewState="False" OnInit="m_grdSelectedMixMembers_Init">
<Behaviors>
<igtbl:RowSelectors RowNumbering="True"></igtbl:RowSelectors>
<igtbl:Selection></igtbl:Selection>
</Behaviors>
</igtbl:WebDataGrid>
<asp:Literal ID="m_litWorkaroundWeightTextboxIssue" runat="server"></asp:Literal>
</ContentTemplate>
</asp:UpdatePanel>

Parents Reply Children
No Data