From this row in this screen, by GoTo button:
To this screen, where "name" is expression equivalet to the row I pressed Go To
I think the answer its about using the right input parameter and format the expression right. But I don't succeed.
Thanks in advance.
/D
Nubie,non proficient in coding
Hi Daniel,
Did you take a look at the built-in templates?
If you create screens using these templates you can learn how some patterns are built in OutSystems.
Nonetheless, from your question, it seems you are looking for a ListScreen/DetailScreen pattern where you navigate from the list to the detail screen and see the user information in this detail screen.
Attached is a .oml where you can see how you can implement this.
Since you are starting with OutSystems now, I would recommend you study the documentation and train your skills through the training paths:
https://www.outsystems.com/training/paths/
I hope this helps, Happy coding!
Regards,
PZ
hank you #Paulo Zacarias for you response.
I working my way through the all training. But so far the templates overloads me with information.
Also looked at the oml-file. All in all, I have manage to connect and two screens. But what has happened is that it always the fetch the first name in the list and that one gets trasferred, not the name from the list row I clicked on.
Thank you #Paulo Zacarias for you response.
You could post the expression you are using to get the name.
My guess is that if you go back to the expression and replace what you have as the name with something like
listName.current.name
it will deliver the right name
(In the dialog box the various options are listed and you can explore what is available)
Thanks Greg, se reply to Dorine.
Hi @Daniel G ,
typical approach would be
now, you say it's always the first user, so maybe you are doing something wrong in knowing which user to pass
one newbie tip : if you feel overwhelmed by the templates, maybe start with just scaffolding a single list and detail page (i.e. drag some entity to the canvas of some UI flow) and study what is going on in there, that is just 2 screens and some actions, it should not overwhelm you. You will see there this same pattern of how the list goes to the detail.
Dorine
Thanks Dorine, I think I have done everything you said, but it still does't work.
On the sendig link I have; GetVictims.List.Current.Victim.Id (it's going to be a victim database, not users)
On the receiving form I have: GetVictimById.List.Current.Victim.Name