TruClient 2.0 - Web VTS functions
The following VTS functions are available:
Function | Description |
---|---|
TC.vtcAddCell | Adds a new cell with the specified value in the last field of a column. |
TC.vtcAddCells | Adds the data in multiple columns. |
TC.vtcAddUniqueCell | Sets the last field of a column to a value, if the value does not already exist in the column. |
TC.vtcClearCell | Clears the data in a field. |
TC.vtcClearColumn | Clears all data in a column. |
TC.vtcClearRow | Clears the values from all fields in a row. |
TC.vtcColumnSize | Returns the number of fields that contain data in a column. |
TC.vtcConnect | Creates a connection to the VTS server (supports HTTP). |
TC.vtcConnectEx | Creates a connection to the VTS server. |
TC.vtcCreateColumn | Creates a column. |
TC.vtcDisconnect | Disconnects from the server. |
TC.vtcGetCell | Returns the data in a field. |
TC.vtcGetRowCells | Returns the data in a row as a JavaScript object. |
TC.vtcIncrement | Increments a counter stored in a field. |
TC.vtcPopCell | Pops the first field from a column. |
TC.vtcPopCells | Pops the data in a row as a JavaScript object. |
TC.vtcPopMultipleCells | Pops the first fields from specified columns. |
TC.vtcRotateCell | Retrieves the first field from the specified column and moves the value to the bottom. |
TC.vtcRotateCells | Retrieves the first field from all columns and moves the values to the bottom. |
TC.vtcSearchRow | Searches for a row containing specific values in specific columns. |
TC.vtcUpdateAllMessageIfequals | Replaces a specific value inside a set of columns with a new value. |
TC.vtcUpdateCell | Replaces the data in a field. |
TC.vtcUpdateEqualsCell | Replaces the data in a field, if the current data equals a given value. |
TC.vtcUpdateRowCells | Replaces the data in multiple fields. |