Workbook.getRubOdId

Syntax

getRubOdId ();

Description

The getRubOdId method determines moniker of time series database.

Example

To execute the example, the page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component), and the following code must be added in the document opening event handler:

var getRubOdIdButt = new PP.Ui.Button({
	ParentNode: document.body, //DOM parent node
	Content: "Output Moniker", //Text
	Click: PP.Delegate(onClickGetRubOdId)
}); 
function onClickGetRubOdId(){
	alert(wbk.getRubOdId().id);
}

After executing the example a button named Show Moniker is placed in the HTML page. After clicking the button a message containing moniker of time series database appears in the screen.

See also:

Workbook