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
180
NO UpdateRowBatch
posted

I have a grid inside an updatepanel, I added the event UpdateRowBatch.
A given change in a cell, click the Save button that generates the PostBack, the page grid and recharges with the values before and does not enter in the UpdateRowBatch.
Can you tell me how to solve? Thank you

Parents
No Data
Reply
  • 45049
    Suggested Answer
    posted

    Do you have the grid's AJAX functionality turned on (DisplayLayout.LoadOnDemand=XML)?  If so, I recommend turning it off.  UpdateRowBatch won't be raised in this scenario.  Moreover, the grid's AJAX functionality isn't compatible with Microsoft's ASP.NET AJAX Extensions, since it's built atop its own AJAX framework.

    Another possible cause is that you may be databinding the grid on every postback, such as in the Page_Load event handler.  This can cause update-related events to not be raised.

Children