Hi, I am not able to make dynamic text box working on our hammer-4 …
I have no problems with setting content of dynamic dropdown, but text box is never working…
I tried everything what I found here and in docs:
From simple:
username=“TEST”
$evm.object[‘value’] = username
To complex:
username=“TEST”
$evm.object[‘default_value’] = username
$evm.object[‘values’] = username
$evm.object[‘value’] = username
$evm.object[‘visible’] = true
$evm.object[‘display’] = :edit
$evm.object[‘required’] = false
$evm.object[‘data_type’] = :string
But nothing was working. My text box settings:

This is HTTP 200 response after refresh button click:
{
“success”: true,
“message”: “Refreshing dialog fields for Service Dialog id:26 label:‘DIALOG TEST’”,
“result”: {
“text_box_1”: {
“name”: “text_box_1”,
“description”: “”,
“data_type”: “string”,
“notes”: null,
“notes_display”: null,
“display”: “edit”,
“display_method”: null,
“display_method_options”: {},
“required”: false,
“required_method”: null,
“required_method_options”: {},
“default_value”: “”,
“values_method”: null,
“values_method_options”: {},
“options”: {
“protected”: false
},
“label”: “Text Box”,
“position”: 3,
“validator_type”: “f”,
“validator_rule”: null,
“reconfigurable”: false,
“dynamic”: true,
“show_refresh_button”: true,
“load_values_on_init”: true,
“read_only”: false,
“auto_refresh”: false,
“trigger_auto_refresh”: false,
“visible”: true,
“type”: “DialogFieldTextBox”,
“resource_action”: {
“action”: null,
“resource_type”: “DialogField”,
“ae_namespace”: “DialogHelpers/Test”,
“ae_class”: “Test”,
“ae_instance”: “Test”,
“ae_message”: null,
“ae_attributes”: {}
},
“dialog_field_responders”: ,
“values”: “TEST”
}
},
“href”: “https://XXXXXXX/api/service_dialogs/26”
}
Any hints?
Thank you…