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[]>
Parameter | Type | Required | Defaults | Description |
---|---|---|---|---|
customTableName | string | true | Table's name | |
orderByColumnName | string | false | null | Column to order by table |
Basic Usage
SW.Document.CustomTable.get("Table");