blob: cda15889a23d44d20ad9e6e4299375d5dc67d3ea [file] [log] [blame]
demx8as6aca16f72021-05-08 15:58:54 +02001.. This work is licensed under a Creative Commons Attribution 4.0 International License.
2.. SPDX-License-Identifier: CC-BY-4.0
3.. Copyright (C) 2020 highstreet technologies and others
4
demx8as653c4f572020-06-14 10:22:57 +02005.. contents::
6 :depth: 3
7..
8
9General functionality
10=====================
11
12The following functionality is common to all applications.
13
14Table data export
15-----------------
16
17Every table can export its data via the '︙' button. The data, which
18gets exported is the currently viewed data in the table. As the default
19pagination is set to 10, only the first 10 rows or filtered rows will be
20exported. To increase the number of exported rows, change the
21pagination.
22
23The behavior of the export can vary based on the browser:
24
25a) Some browsers allow you to save the file with the predefined name
26 export.csv. In case your browser does not offer this function please
27 use the 'Save as...' option and define the filename with extension
28 csv.
29
30b) Some browsers save the file automatically with the alphanumeric name
31 but without an extension. In such a case navigate to the downloaded
32 file location and rename the file. The extension (csv) must be
33 appended to the name. The result should look like 'export\_file.csv'.
34
35Table filters
36-------------
37
38The following filters are supported by all tables based on the data type
39of the column.
40
41+------------+------------------+------------+
42| Data type | Possible Filter | Example |
43+============+==================+============+
44| Text | Any characters | Test, |
45| | or numbers, | Tes\ \*, |
46| | matches exactly | \*\ t |
47| | unless a \* is | |
48| | used. The \* | |
49| | acts as a | |
50| | wildcard and can | |
51| | be used for | |
52| | contains, ends | |
53| | with and begins | |
54| | with queries. | |
55+------------+------------------+------------+
56| Numeric | < or <= or > or | >5000, 20, |
57| | >= or exact | <=82 |
58| | number | |
59+------------+------------------+------------+
60| Boolean | None (no filter | true, |
61| | set), true or | false |
62| | false | |
63+------------+------------------+------------+