How to edit forms with checkboxes ? #339
|
Hi, |
Answered by
DSMejantel
May 24, 2024
Replies: 4 comments 1 reply
|
Hello! You can use the "checked" row-level attribute of the form component. |
0 replies
|
Helloc ! Like this in ruche.sql : SELECT
'Mort de la colonie' AS label,
'mort' AS name,
CASE WHEN disparition=1 THEN TRUE ELSE '' END as checked,
'checkbox' as type,
1 as value,
3 as width
from colonie where numero = $id |
1 reply
Answer selected by
ThierryM
|
Hi ! |
0 replies
|
Hi, |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Helloc !
Like this in ruche.sql :