This topic is locked
[SOLVED]

Display a field twice with different settings

3/6/2024 9:03:22 AM
PHPRunner General questions
Y
Yoann author

Hi,

I'm using a text field to store an URL.
I would like to display this URL on my view pages twice. One with QR code and another one with read only to have the URL link than can be share.
Does anyone already had this need, what is the best solution. I tought about creating another field with the same value inside but other view settings but maybe there is a better way to do it.

Thanks

Sergey Kornilov admin 3/6/2024

Add the same field twice to the SQL query:

select field,
field as field2
from tablename

Setup field and field2 to be displyed differently. They will be treated as two independent fields.

Y
Yoann author 3/6/2024

So should I create a new field ?

Y
Yoann author 3/6/2024

Ok I got it, works perfectly thanks