Replies: 3 comments 13 replies
-
Beta Was this translation helpful? Give feedback.
-
I tried my best, but haven't been successful with this example: select 'form' as component;
SELECT
'email' as name,
email as value,
'Contact [' || email || '](mailto:' || email || ')' AS description_md,
'envelope' AS icon
from users where id = $id; My code fetches email from the database: select 'email' as name
, 'E-Mail' as label
, 5 as width
, 'Kontakt ' as description
, (SELECT email FROM prospects
WHERE prospect_id = $prospect_id::int) AS value
; This works as advertised. However, I can't figure how to put the description_md properly.
nothing happens (visually) -- no error, but no description either. And this line |
Beta Was this translation helpful? Give feedback.
-
Sadly, the result is the same as when I put the query in place of email: The description_md doesn't show: Version: |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Given a large form with fields like email, website, phone, … displayed I'd like to initiate an action on such communications channels, i.e. open the site. send an email, dial the number … as the field "homepage" hold the URL already, it shouldn't be too difficult to put a button close to the field, but so far I haven't seen anything like this yet. Any hints?
Beta Was this translation helpful? Give feedback.
All reactions