Note that there are some explanatory texts on larger screens.

plurals
  1. POASPxGridView POST timeout
    primarykey
    data
    text
    <p>I have a ASPxGridView with DetailRow in this row there are three additional ASPxGridViews. Each detail ASPxGridView contains EmptyDataRow templates with link to create a new row:</p> <pre><code>&lt;a href="javascript:gridViewDetails1.AddNewRow();"&gt;AddNewRecord&lt;/a&gt; </code></pre> <p>When master ASPxGridView rows is 1 or 2 then new rows in detail grids adding fine, but if in master ASPxGridView rows about 10 or more then when I clicking on detail grids link to add new row the loading panel appers for unlimited time and FireBug->Net shows that status of POST is timeout and time is about 1 sec.</p> <p>How can I repair it?</p> <p>To <strong>AGoodDisplayName</strong>:</p> <blockquote> <p>are the detail row gridviews bound to anything?</p> </blockquote> <p>yes of course, inside the details row of master gridView there are 3 another gridView and each of them have a separate ObjectDataSource.</p> <blockquote> <p>Are you expanding more than row at a time?</p> </blockquote> <p>No, I have only one row at time:</p> <pre><code>AllowOnlyOneMasterRowExpanded="true" </code></pre> <blockquote> <p>Can we see some of the mark up?</p> </blockquote> <p>Yep:</p> <pre><code>&lt;asp:ObjectDataSource ID="dsMaster" runat="server" TypeName="..." SelectMethod="..."&gt; &lt;/asp:ObjectDataSource&gt; &lt;dxwgv:ASPxGridView ID="gridViewMaster" ClientInstanceName="gridViewMaster" runat="server" DataSourceID="dsMaster"&gt; &lt;Templates&gt; &lt;DetailRow&gt; &lt;%--first of details gridView--%&gt; &lt;asp:ObjectDataSource ID="dsDetail1" runat="server" TypeName="..." SelectMethod="..."&gt; &lt;/asp:ObjectDataSource&gt; &lt;dxwgv:ASPxGridView ID="gridViewDetail1" ClientInstanceName="gridViewDetail1" runat="server" DataSourceID="dsDetail1"&gt; &lt;Templates&gt; &lt;EmptyDataRow&gt; &lt;a href="javascript:gridViewDetail1.AddNewRow();"&gt;AddNewRecord&lt;/a&gt; &lt;/EmptyDataRow&gt; &lt;/Templates&gt; &lt;/dxwgv:ASPxGridView&gt; &lt;%--next others detail gridViews--%&gt; &lt;/DetailRow&gt; &lt;/Templates&gt; &lt;/dxwgv:ASPxGridView&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload