sWhat | (String) Specifies type of returned information. active.id - Returns id of active backup. Synchronous, the onComplete parameter is not used. list - Returns 2-dimesnional array with backup list (id + displayed text). Asynchronous, the onComplete parameter is used. |
---|---|
sParams | [optional] (String) Additional parameters. Not being used so far. Must be omited or an empty string "" must be used. Entries are in KeyVal format, for example "name1:value1;name2:value2;". |
onComplete | [optional] (Function) The onComplete parameter contains a function that will be called for asynchronous handover of the result. The function must be in syntax: function onComplete(result) {}; where the result parameter contains the returned value (result) of the asynchronous calling. |
This method is also functional in Web panels.
var oViewer = pMe.Items("/Viewer");
var aBackup = oViewer.GetBackupInfo("list", "");
var sBackup = oViewer.GetBackupInfo("active.id", "");