{ "widgettype": "Dialog", "options": { "title": "Execute Remote Skill", "width": "600px", "height": "400px" }, "subwidgets": [ { "widgettype": "Form", "id": "execute_form", "options": { "fields": [ {"name": "skill_id", "label": "Skill ID", "readonly": true, "hidden": true}, {"name": "parameters", "label": "Parameters (JSON)", "type": "textarea", "height": "250px", "default": "{}"} ] } }, { "widgettype": "ButtonBar", "options": { "buttons": [ { "id": "execute_submit", "text": "Execute", "icon": "play" }, { "id": "execute_cancel", "text": "Cancel", "icon": "x" } ] }, "binds": [ { "wid": "execute_submit", "event": "click", "actiontype": "callfunction", "fname": "hermes_manage_remote_skills", "params": { "action": "execute", "skill_id": "${skill_id}$", "parameters": "${parameters}$" }, "target": "execute_result", "method": "set_text" }, { "wid": "execute_cancel", "event": "click", "actiontype": "close_dialog" } ] }, { "widgettype": "Label", "id": "execute_result", "options": { "text": "", "height": "60px", "overflow": "auto" } } ], "binds": [ { "wid": "self", "event": "loaded", "actiontype": "load_url_params", "target": "execute_form", "method": "load_data" } ] }