To refresh the List page manually, add the following code to the List page: JavaScript OnLoad event: this.on('afterInlineEdit', function( fieldsData ) { location.reload(); }); To refresh the grid on the List page without reloading the page, use the following code in the JavaScript OnLoad event: Note: the AJAX search, pagination and sorting option should be enabled (Choose pages -> List page settings). Runner.runnerAJAX(Runner.pages.getUrl(pageObj.tName, pageObj.pageType)+"?a=return", pageObj.ajaxBaseParams, function(respObj){ pageObj.pageReloadHn.call(pageObj, respObj) }); |