This topic is locked

Reload the grid of the details

6/15/2019 9:44:12 PM
ASPRunner.NET General questions
O
Onofre author

I have a page that is the masterpage, and one of details when I add registration in the details I can only edit if I refresh the page. you have to reload the grid of the details page without reloading the masterpage.

I
i.NoLim 6/25/2019

I'm not completely sure about just reloading the details portion of a page but the following will automatically refresh the whole page after adding a new entry.
Add to JavaScript OnLoad event:



this.on('afterInlineAdd', function( fieldsData ) {

location.reload();

} )