diff --git a/.github/mkdocs/mkdocs.yaml b/.github/mkdocs/mkdocs.yml similarity index 79% rename from .github/mkdocs/mkdocs.yaml rename to .github/mkdocs/mkdocs.yml index 602a8e2..bc4d3d0 100644 --- a/.github/mkdocs/mkdocs.yaml +++ b/.github/mkdocs/mkdocs.yml @@ -8,12 +8,14 @@ nav: - Login: - login/index.md - Anonymous: login/Anonymous.md - - Dashboard: login/Dashboard.md - Datasets: - datasets/index.md - Publishing data: datasets/Publishing.md - Publishing data Advanced: datasets/PublishingAdvanced.md - - Data Retrieval: datasets/jobs.md + - Data Retrieval: datasets/jobs.md + - Dashboard: + - Search and Filter: datasets/DashboardDatasetsFiltering.md + - Configure Dataset Table: datasets/dashboardTableEditing.md - Proposals: - proposals/index.md - Samples: samples/index.md diff --git a/docs/frontendconfig/index.md b/docs/frontendconfig/index.md index 9cc1cc6..1cfeff2 100644 --- a/docs/frontendconfig/index.md +++ b/docs/frontendconfig/index.md @@ -27,7 +27,7 @@ Defines how each field is displayed in the list table. | ------------ | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | | `name` | `string` | Object key whose value will be displayed in the column. | `"datasetName"` | | `order` | `number` | Position of the column in the table. | `2` | -| `type` | `string` | How the value is rendered:
• `standard` – plain text (default)
• `hoverContent` – shows icon with popup/modal when mouseover (for long text)
• `date` – formats ISO date strings; can include a `format` (e.g. `yyyy-MM-dd`) | `"date"` | +| `type` | `string` | How the value is rendered:
• `standard` – plain text (default)
• `hoverContent` – shows icon with popup/modal when mouseover (for long text)
• `date` – formats ISO date strings; can include a `format` (e.g. `yyyy-MM-dd`)
• `editable` – plain text and editable by clicking on cell if user has permission | `"date"` | | `width` | `number` | Default width of the column. | `200` | | `format` | `string` | Optional property used **only** when `type` is set to `date`. Defines how ISO date strings are displayed (e.g. `yyyy-MM-dd`).
it fallsback to `dateFormat` or `yyyy-MM-dd HH:mm` for dataset and `yyyy-MM-dd` for proposal | `"yyyy-MM-dd"` | | `enabled` | `boolean` | Whether the column is displayed by default. | `true` |