getTablePanel();
The getTablePanel method returns the Data panel of the Data tab.
This method returns an object of the PP.TS.Ui.TablePanel type.
To execute the example, the HTML page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component. Show the Data panel:
// Get workbook properties panel var propertyBar = workbookBox.getPropertyBarView(); // Get the Data panel var tablePanel = propertyBar.getTablePanel(); // Display this panel tablePanel.show(); // Expand panel tablePanel.expand();
After executing the example the Data panel is displayed:
See also: