Solved
Radio Field Image
Hi Everyone,
Can anyone please help me, Is it possible to display image in radio button as shown in screenshot below:

Hi Everyone,
Can anyone please help me, Is it possible to display image in radio button as shown in screenshot below:

Hello [mention:bb176b67c26c4e89b2173f39160c9f46:e9ed411860ed4f2ba0265705b8793d05] ,
Radio button does not allow this modification but you can try below code as per your requirement.
a!localVariables(
local!selection,
a!richTextDisplayField(
value: {
a!richTextItem(
text: if(
toboolean(local!selection) = true(),
"✅" & "Yes",
"🔘" & "Yes"
),
link: a!dynamicLink(
saveInto: a!save(local!selection, true())
)
),
", ",
a!richTextItem(
text: if(
toboolean(local!selection) = false(),
"â%9DŒ" & "No",
"🔘" & "No"
),
link: a!dynamicLink(
saveInto: a!save(local!selection, false())
)
),
}
)
)Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.