Is it possible to add a tooltip help text to a Radio button using the API?
Monday, November 20, 2023 at 12:59pmI've noticed in the UI I am able to add tooltips to my radio buttons. I am wondering if this is a possible in the api as well ie
{ "id":"signer1_group1_radio1", "name":"signer1_group1_radio1", "type":"INPUT", "subtype":"RADIO", "page":0, "height":15, "width":15, "left":100, "top":100, "value":"X", "validation":{ "required":true, "group":[ "group1" ] } }
Reply to: Is it possible to add a tooltip help text to a Radio button using the API?
Tuesday, November 21, 2023 at 08:22amHi Neal,
Yes, it's possible to add tooltip via API. Check below highlighted part:
{
"tooltip": "field tooltip",
"binding": null,
"validation": {
"required": false,
"enum": [
"group1"
],
"groupTooltip": "group tooltip"
},
"id": "signer1_group1_radio1",
"page": 0,
"top": 419.3704433497537,
"width": 15.991071428571429,
"height": 15.991071428571429,
"subtype": "RADIO",
"left": 409.6042487684729,
"type": "INPUT",
"value": "X",
"name": "signer1_group1_radio1"
}
Duo
Reply to: Is it possible to add a tooltip help text to a Radio button using the API?
Tuesday, November 21, 2023 at 08:36amThanks Duo!