nealhennessy | Posts: 19

Is it possible to add a tooltip help text to a Radio button using the API?

0 votes

I'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" ] } }

 


Approved Answer
Duo_Liang | Posts: 3776

Reply to: Is it possible to add a tooltip help text to a Radio button using the API?

1 votes

Hi 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


nealhennessy | Posts: 19

Reply to: Is it possible to add a tooltip help text to a Radio button using the API?

0 votes

Thanks Duo!


Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off