Using JSON and an Adobe Sign integration, on a generated word file, I've created dropdowns with values.
{
"backgroundColor": "",
"borderColor": "",
"borderStyle": "SOLID",
"borderWidth": -1,
"displayLabel": "",
"visible": true,
"inputType": "DROP_DOWN",
"tooltip": "",
"fontColor": "",
"fontName": "",
"fontSize": -1,
"alignment": "LEFT",
"displayFormat": "",
"displayFormatType": "DEFAULT",
"masked": false,
"maskingText": "*",
"visibleOptions": [
" ",
"value 1",
"value 2",
"value 3",
"value 4",
"value 5",
"value 6",
"value 7"
],
"hiddenOptions": [
" ",
"value 1",
"value 2",
"value 3",
"value 4",
"value 5",
"value 6",
"value 7"
],
"radioCheckType": "CIRCLE",
"conditionalAction": {
"anyOrAll": "ANY",
"action": "SHOW"
},
"contentType": "DATA",
"defaultValue": "",
"readOnly": false,
"valueExpression": "",
"calculated": false,
"urlOverridable": false,
"required": false,
"minLength": -1,
"maxLength": -1,
"minValue": -1,
"maxValue": -1,
"validationErrMsg": "",
"validation": "NONE",
"origin": "AUTHORED",
"name": "Field1",
"locations": [
{
"pageNumber": 3,
"top": 718,
"left": 154,
"width": 257,
"height": 16
}
],
"assignee": "recipient0",
"internal": {
"excludeForApprover": true,
"excludeForSigner": false,
"email": ""
}
},
With this, the outlined dropdown from the screenshot is shown as I want (default value being empty and the values I have set).
I want to know if/how it is possible to change the default text "Select..." that is presented before select a value from the drop down.
What attribute can changed to achieve this?
Thanks in advance!