Return Pages After Grid-Add and After Grid-Edit

PHPMaker v2026.8.

This is setup for orderdetails table in demo2026 project:

Also, I put this code in Table_Load server event of that table:

$this->UseAjaxActions = true; // Use Ajax Actions for the table

However, after Grid-Add, it did not redirect to Grid-Add.

Also, after Grid-Edit, it did not redirect back to Grid-Edit.

However, if I remove that code in Table_Load server event above, then it works.

The question is, can I still use the code in that server event, and also the redirect for both mode above works?

Try v2026.9.

Sorry, the issue still remains.

Those return pages are working properly only if I remove that code above in Table_Load server event.

It also works if I keep the code in Table_Load server event, but Grid-Add and Grid-Edit displayed in Modal dialog.

The issue only happened for Grid-Add/Grid-Edit that do not use Modal dialog and use AjaxAction in Table_Load.

Note that "Use Ajax actions" requires modal dialogs. The aim of using Ajax action is to do insert/update (by modal dialog) and then refresh the List page without reloading the page.

All right, then. Understood.

That means, we have to enable Modal dialog if we want to return back from Grid-Edit to Grid-Edit, also from Grid-Add to Grid-Add.

Just a friendly suggestion, that would be nice when we are setting up those Return Pages, then system will suggest (or automatically) to enable Modal dialog for those related pages.