If you wish to enable clicking an item in table mode to directly display the page details in Data View Plus web part, follow the steps below:
1. While in edit mode, click the settings cogwheel in the table control.
2. Switch to Advanced Mode

3. Configure the Item Click Action
- In the Item click section, select Call item click action from the dropdown menu.

4. Edit the Table Row Actions
- In the Table row actions, click Edit action in the Item action field.

5. Add JavaScript Code
var viewUrl = item.dvp_ViewFormUrl || null;
if (!root.IsNullOrEmptyString(viewUrl)) {
var joinBy = viewUrl.indexOf('?') > 0 ? '&' : '?';
viewUrl += joinBy + "InDlg=1&Source=" + encodeURIComponent(window.location.href);
component.openPopup(viewUrl, item.Title, null, { root: root });
}

6. In the Click actions, click Edit action in the Item action

7. Paste the same code into the JavaScript field: