Link View/Edit/Copy in Detail Table of Master/Detail View page does not work

PHPMaker v2026.10.

I found an issue regarding some links for View, Edit, and Copy menu item that belongs to detail table in Master/Detail View page does not work. When clicked, then there are no modal dialog display for those pages.

Let's say from demo2026 project, we are currently visiting this link in the generated web application:
http://localhost/demo2026_original/ordersview?showdetail=orderdetails%2Corder_details_extended&page=1

Link View of Detail Table in Master/Detail View page, this link does not work, no modal dialog display at all when clicked:

<a class="ew-row-link ew-view dropdown-item" data-table="orderdetails" data-caption="View" data-ew-action="modal" data-action="view" data-ajax="true" data-key="11077,2" data-url="/demo2026_original/orderdetailsview/11077/2?showmaster=orders&fk_OrderID=11077" data-btn="null" href="#">View</a>

For comparison, then here is the link View in Preview area in Master List page that working properly.

Link View of Detail Table in Master/Detail List page using Preview extension, this link working properly when clicked, then View page of detail table is displayed:

<a class="ew-row-link ew-view dropdown-item" data-caption="View" data-ew-action="modal" data-url="/demo2026_original/orderdetailsview/11077/2?showmaster=orders&fk_OrderID=11077" data-btn="null" href="#">View</a>

You may reproduce this issue from demo2026 project for orders (master) and orderdetails (detail) tables.

Well, I think the cause of this issue is because of this code in Table_Load server event that belongs to the orderdetails (detail) table:

$this->UseAjaxActions = true;

After comment that code, then the link is working properly.