Link not opening new windows and data not being passed

Hi,

I have a repeater that displays data from a table. I have a link that should take me to another page and I am trying to pass the student name.

So I have this as my link logic and the names are show in console as I select them.

Problem #1 is that when I click on the link, even though the browser shows the associated URL nothing happens. I have to right click, copy link and paste into a new tab. Have tried in both FF and Edge.

Problem #2 is that on the second page, the print shows the data as undefined.

1

Any assistance would be appreciated.

Thanks
Steve

Hello @Steve

  1. Will be great to see your link state/logic
  2. It’s means that you didn’t assign any value for studentName.

Regards, Dima

Hi,

The link logic is above and when I click on a name is shows in console

APP ID is 32A30DFF-820C-48BD-BFFB-D371A1C3A7FF

Main page is Dashboard2 which is supposed to call Student Record when link is clicked.

Thanks
Steve

You overwrite default link behavior. If you want to redirect by click, add it manually into the logic using Go to Page/Open Web Page blocks.

Ok,

That deals with moving between pages but what about the fact that the data is not being transferred to the new page?

Also, if the way to link is via logic, when would you use App Page or URL in the link options?

Thanks
Steve

URL in the link options

When you want to redirect to external source. With link App Data always will be lost.

In all other cases use Go to Page logic. It will transfer the data because under the hood is SPA routing works.

Ok, thanks.