How to add a link to a second dynamic page

I’ve create a data collection with two pages.
Page 1 is the index page with a table showing the records from the data collection
Page 2 is the actual dynamic page from the collection. This page is read only for the public to see the data. No edits are allowed.

Now I’d like to duplicate Page 1 for administration of the data collection. Edits and such. The page for doing the edits would have a number of fields for each column in the collection.

I created the second index page called Admin Index and it does display the data from the collection. What I can’t seem to figure out is how to make the link on the admin page to go to the RW Admin dynamic page rather than going to the RO index “page 1” above.

Any ideas?

If I understand correctly, you have 1 dynamic page you want to show when browsing from the Index page, and another dynamic page you want to show when browsing from the Index Admin page.
If you want to change the page that the link taking you to a a different dynamic page, you can just do it by:
press on the Table’s connect button → choose the field you want to link → press on the link icon next to that field → an addition raw will be added that will let you choose the page to link → choose the RW dynamic page.

Elad

Can anyone help me how to connect dynamic page through wix code after selecting table row .
I need incorporate here :

export function searchButton_onClick(event) {

wixData.query(‘CaterersQuatation’)
.eq(‘orderNumber’, $w(‘#textInput1’).value)
.find()
.then(res => {
$w(‘#table1’).rows = res.items;
});
}

Hi Anatu,
Answered in this thread:

It is recommended to post a question in a new thread.
Roi.