Skip to content
Snippets Groups Projects

F7284 tablesorter save sort order

Closed Marc Egger requested to merge F7284tablesorterSaveSortOrder into master
10 files
+ 552
86
Compare changes
  • Side-by-side
  • Inline
Files
10
+ 28
0
@@ -563,3 +563,31 @@ Current Page
Redirect
: Issued by the Server. It is a command prompting the Client to
navigate away from the Current Page.
### Tablesorter Save View
To save a table view the client sends a post request with the following data:
{
"name": "<name of view>",
"public": <boolean>,
"uid": "<uid of user who sent request>",
"tableId": "<id of table to which view belongs>",
"view": {
"columnSelection": <array of chosen column ids>,
"filters": <array of strings>,
"sortList": <array of arrays of length 2>
}
}
Request URL
: api/tablesorter.php
Request Method
: POST
URL Parameters
: none
Server Response
: The response contains at least a [Minimal Response].
\ No newline at end of file
Loading