Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Applies to: (tick) Kyvos Enterprise  (tick) Kyvos Cloud (SaaS on AWS) (tick) Kyvos AWS Marketplace

(tick) Kyvos Azure Marketplace   (tick) Kyvos GCP Marketplace (tick) Kyvos Single Node Installation (Kyvos SNI)

...

This event will be triggered when the Export dialog is opened.

Interface

Code Block
{"msgId": "",
"msgName": "kyvos.viewer.onWorksheetExportDialogOpen", "payload": {
"info": { "status": "",
"desc": "",
"extDesc": "", "code": 0
},
"data": {
"entity": "SHEET"
}
}}

Points to consider

  1. When the Export dialog is opened, the payload will have entity: SHEET if worksheet is opened and entity: DASHBOARD when dashboard is opened.

Example

Code Block
{"msgId": "Guid_8699757563",
"msgName": "kyvos.viewer.onWorksheetExportDialogOpen",
"payload": {
"info": {
"status": "success",
"desc": "Export dialog opened successfully.", "extDesc": "",
"code": 0
},
"data": {
"entity": "SHEET"
}
}}

...