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
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.
ajax disabled no AJAX Extensions I check in pageload: If Not Page.IsPostBack Then end if and reloading the grid. But the event is not triggered UpdateRowBatch. I noticed that if I put UpdateRow, in exchange for a given row in the pageload part but not the event of the grid. I do not know how to solve.