Version

Refreshing WebDataGrid when AutoCRUD is Turned off

There may be some scenarios where you might not want to perform the CRUD operations automatically in WebDataGrid™. In order to do this, you will set the EditingCore object’s AutoCRUD property to False. However in this case, WebDataGrid does not refresh automatically to reflect your CRUD changes. In order to achieve this you need to call the WebDataGrid control’s RequestFullAsyncRender method explicitly after the CRUD actions to force the update. Calling the RequestFullAsyncRender method during an async postback, enforces the control to update its HTML and reinitialize itself entirely as if the page was just loaded.

In Visual Basic:

Me.WebDataGrid1.RequestFullAsyncRender();

In C#:

this.WebDataGrid1.RequestFullAsyncRender();