Send arguments to the Link component

Is it possible to send arguments to the Link component, so that you can e.g. send an objectId accompanying the link somehow?

I know I can create my own links custom using other building blocks, but was just curious if the Link component does bring something else to the table (I do like that it keeps track of the name of the page, so that if it is renamed the link will still work).

The Link component has both URL Logic and Text Logic handlers, which you can use to compose text of the link as well as the actual URL it points to:
UI Builder - ConsoleDemo - Backendless 2023-07-20 14-41-40

What I meant was if there were any ways of using the “App Page” selector AND send that App Page url arguments into its Page data…

Reason being that if I rename a page otherwise, links have to be fixed wherever used…

Using App Data is of course an alternative…

Btw, whenever App Page is set, whatever is put into the URL Logic handler is disregarded. Not sure if that is by design or not…

I see what you’re talking about now. Yes, the App Page setting overrides the URL Logic handler.

The URL Logic handler gives you the flexibility you want. From the perspective of changing the page name, if you use the following approach, there would be only one place to change the name of the page:
UI Builder - ConsoleDemo - Backendless 2023-07-20 15-43-02

As you can see the target page name is now encapsulated in a reusable function, which would be the only place to change the name of the page when you rename it:
UI Builder - ConsoleDemo - Backendless 2023-07-20 15-43-59

Clever! I think I’ll adopt that if you don’t mind :stuck_out_tongue_winking_eye: