Aijana Schumann | 06fb529 | 2020-02-11 15:44:17 +0100 | [diff] [blame] | 1 | .. contents:: |
| 2 | :depth: 3 |
| 3 | .. |
| 4 | |
| 5 | General functionality |
| 6 | ===================== |
| 7 | |
| 8 | The following functionality is common to all applications. |
| 9 | |
| 10 | Table data export |
| 11 | ----------------- |
| 12 | |
| 13 | Every table can export its data via the '︙' button. The data, which |
| 14 | gets exported is the currently viewed data in the table. As the default |
| 15 | pagination is set to 10, only the first 10 rows or filtered rows will be |
| 16 | exported. To increase the number of exported rows, change the |
| 17 | pagination. |
| 18 | |
| 19 | The behavior of the export can vary based on the browser: |
| 20 | |
| 21 | a) Some browsers allow you to save the file with the predefined name |
| 22 | export.csv. In case your browser does not offer this function please |
| 23 | use the 'Save as...' option and define the filename with extension |
| 24 | csv. |
| 25 | |
| 26 | b) Some browsers save the file automatically with the alphanumeric name |
| 27 | but without an extension. In such a case navigate to the downloaded |
| 28 | file location and rename the file. The extension (csv) must be |
| 29 | appended to the name. The result should look like 'export\_file.csv'. |
| 30 | |
| 31 | Table filters |
| 32 | ------------- |
| 33 | |
| 34 | The following filters are supported by all tables based on the data type |
| 35 | of the column. |
| 36 | |
Aijana Schumann | b439e2b | 2020-09-03 20:39:00 +0200 | [diff] [blame] | 37 | +------------------+-------------------------------+------------------+ |
| 38 | | Data type | Possible Filter | Example | |
| 39 | +==================+===============================+==================+ |
| 40 | | Text | Any characters or numbers, | Test, | |
| 41 | | | matches exactly unless a \* | T\ *,*\ st, | |
| 42 | | | or a ? are used. Both special | Te?t, ?est | |
| 43 | | | characters act as wildcards, | | |
| 44 | | | which can be used for | | |
| 45 | | | contains, ends with and | | |
| 46 | | | begins with queries. The \* | | |
| 47 | | | matches any number of | | |
| 48 | | | characters whereas the ? | | |
| 49 | | | matches exactly one | | |
| 50 | | | character. Both wildcards can | | |
| 51 | | | be used in the same query. | | |
| 52 | +------------------+-------------------------------+------------------+ |
| 53 | | Numeric | < or <= or > or >= or exact | >5000, 20, <=82 | |
| 54 | | | number | | |
| 55 | +------------------+-------------------------------+------------------+ |
| 56 | | Boolean | None (no filter set), true or | true, false | |
| 57 | | | false | | |
| 58 | +------------------+-------------------------------+------------------+ |