You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns all of the rows for the datatable with the given id. By default this will just be a shortened list returning the key for each row. Set expand to all to return all of the row contents.
4239
+
Returns the rows for the datatable with the given id
4240
+
Returns all of the rows for the datatable with the given datatableId. By default this will just be a truncated list returning the key for each row. Set showBrief to false to return all of the row contents.
4157
4241
4158
4242
This method makes a synchronous HTTP request by default. To make an
4159
4243
asynchronous HTTP request, please define a `callback` function
Will add the passed in row entry to the datatable with the given id after verifying it against the schema.
5937
+
Create a new row entry for the datatable.
5938
+
Will add the passed in row entry to the datatable with the given datatableId after verifying it against the schema. The DataTableRow should be a json-ized' stream of key -> value pairs { \"Field1\": \"XYZZY\", \"Field2\": false, \"KEY\": \"27272\" }
5855
5939
5856
5940
This method makes a synchronous HTTP request by default. To make an
5857
5941
asynchronous HTTP request, please define a `callback` function
Create a new datatable with the specified json-schema definition
5938
-
This will create a new datatable with fields that match the property definitions in the JSON schema. The name of the table from the title field of the json-schema. See also http://json-schema.org/
6022
+
This will create a new datatable with fields that match the property definitions in the JSON schema. The schema's title field will be overridden by the name field in the DataTable object. See also http://json-schema.org/
5939
6023
5940
6024
This method makes a synchronous HTTP request by default. To make an
5941
6025
asynchronous HTTP request, please define a `callback` function
Updates a schema for a datatable with the given id - updates are additive only, no changes or removals of existing fields.
6784
+
Updates a schema for a datatable with the given datatableId -updates allow only new fields to be added in the schema, no changes or removals of existing fields.
6701
6785
6702
6786
This method makes a synchronous HTTP request by default. To make an
6703
6787
asynchronous HTTP request, please define a `callback` function
Updates a row with the given rowId (the value of the key field) to the new values. The DataTableRow should be a json-ized' stream of key -> value pairs { \"Field1\": \"XYZZY\", \"Field2\": false, \"KEY\": \"27272\" }
6785
6869
6786
6870
This method makes a synchronous HTTP request by default. To make an
6787
6871
asynchronous HTTP request, please define a `callback` function
0 commit comments