Hi all,
I've come across a question that I haven't seen anywhere on the site.
This is the case:
I have a static entity with a series of records, each one has a text, a boolean if the app has been entered and a country.
Depending on whether you enter as a login user or not, a series of records or others should appear and among them there is a record called: "Password Change" if you are logged in or "Forgot Password" if you are not.
This field, like the others, has an attribute called "Description". In the table will appear a column with the text and in the next column will appear the description. In the description I want to put something like: "Redirect me to the change / forget password screen".
I want this description to have a link to a different screen.
In my case I can't use site properties because the table with the data has more cases and I would have to create many SP.
In conclusion:
- How can we add links in a static entity record?
Thank you very much for your answers.
Best regards.
Hi Pablo
Maybe you can create a static entity like below.
Then in the screen set the link like below.
Kind regard,
First of all thank you for your quick response.
I think that's a good solution to what I'm looking for, I'll give it a try.
Thank you very much and take care.
Hi,
you can simple use GetUserID() which return logged in user id .
Based on it you can add condition like
if(GetUserid() <>NullIdentifire(),"Change Password","Forget Password")
Hope it will help you.
Regards
Rahul
I will try what you said but what I was more interested in is what Tom wrote in the following comment.