Skip to main content

Custom Table

A sub namespace of Document, exclusive for the custom tables operations


get

Description

This method can be used to get custom tables.

Method(s)

1   declare function get(
2 customTableName: string,
3 orderByColumnName: string = null
4 ): Promise<CustomTableDto[]>
ParameterTypeRequiredDefaultsDescription
customTableNamestringtrueTable's name
orderByColumnNamestringfalsenullColumn to order by table

Basic Usage

SW.Document.CustomTable.get("Table");