From f28a85ab0de71311d26b233d51af398721a78172 Mon Sep 17 00:00:00 2001 From: Noelia Prol Carballo Date: Thu, 8 Jan 2026 11:13:45 +0100 Subject: [PATCH 1/5] Solved minor fixes --- _data/components/otableData/00table.yml | 19 ++++++++++--------- _data/components/service.yml | 2 +- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/_data/components/otableData/00table.yml b/_data/components/otableData/00table.yml index 84638897f..566fae20e 100644 --- a/_data/components/otableData/00table.yml +++ b/_data/components/otableData/00table.yml @@ -137,7 +137,10 @@ attributes: [{ required: "", description: "Indicates whether or not to show the column of checkboxes for selecting table rows in the table" },{ - name: "orderable" + name: "orderable", + type: "no | false | yes | true", + default: "yes", + description: "Indicates whether or not all columns in the table can be sorted" },{ name: "enabled", type: "no | false | yes | true", @@ -151,17 +154,15 @@ attributes: [{ required: "", description: "Indicates whether or not the table columns are resizables" },{ - name: "keep-selected-items" + name: "keep-selected-items", + type: "no | false | yes | true", + default: "yes", + description: "Indicates whether or not to keep a table row highlighted as selected" },{ name: "export-service-type", type: "string", - description: "The service used by the table for exporting it's data, it must implement 'IExportService' interface. Default: 'OntimizeExportService'" -},{ - name: "visible-export-dialog-buttons", - type: "string", - default: "", - required: "", - description: "Visible buttons in export dialog, separated by ';'" + default: "OntimizeExportService", + description: "The service used by the table for exporting it's data, it must implement 'IExportService' interface" },{ name: "show-filter-option", type: "no | false | yes | true", diff --git a/_data/components/service.yml b/_data/components/service.yml index 42021a388..fe6bbaf5e 100644 --- a/_data/components/service.yml +++ b/_data/components/service.yml @@ -58,7 +58,7 @@ attributes: [{ name: "page-size-options" },{ name: "quick-filter-appearance", - type: "legacy | standard | fill | outline", + type: "fill | outline", default : "outline", required : "", description : "Indicates which of the mat-form-field different except in o-table component[appearance variants](https://v15.material.angular.io/components/form-field/overview#form-field-appearance-variants) will be used. except in the o-table component." From 1ee64f5cab5cd3f9b9a994818544adcb8213f877 Mon Sep 17 00:00:00 2001 From: Noelia Prol Carballo Date: Wed, 21 Jan 2026 12:10:21 +0100 Subject: [PATCH 2/5] feature: add new OTableComponent input --- _data/components/otableData/00table.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_data/components/otableData/00table.yml b/_data/components/otableData/00table.yml index 735469ae1..eef3cbc55 100644 --- a/_data/components/otableData/00table.yml +++ b/_data/components/otableData/00table.yml @@ -243,6 +243,12 @@ attributes: [{ description: "Visible buttons in export dialog, separated by ';'. Default/no configured: show all. Empty value: hide all", required: "", default: "no" +},{ + name: "selection-on-row-click", + type: "yes|no|true|false", + description: "Indicates whether row selection is triggered when clicking on a row", + required: "", + default: "no" }] inheritedOutputs: [{ From b9ff1b43acb672cc622e10f602d8b71ce93651bc Mon Sep 17 00:00:00 2001 From: Noelia Prol Carballo Date: Wed, 21 Jan 2026 12:13:02 +0100 Subject: [PATCH 3/5] feature: update versions --- docs/aditional-information/52-versions.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/docs/aditional-information/52-versions.md b/docs/aditional-information/52-versions.md index 0f1233c7d..8795dbfae 100644 --- a/docs/aditional-information/52-versions.md +++ b/docs/aditional-information/52-versions.md @@ -28,14 +28,17 @@ In this section you can check the different releases of **OntimizeWeb** and its + + 15.8.1 + 15.1.1 + 15.0.1
15.0.0 + 15.3.0 + 15.1.2
15.1.1
15.1.0
15.0.0 + 15.1.0 + 15.1.2
15.1.1
15.1.0
15.0.0 + 15.8.0 - 15.1.1 - 15.0.1
15.0.0 - 15.3.0 - 15.1.2
15.1.1
15.1.0
15.0.0 - 15.1.0 - 15.1.2
15.1.1
15.1.0
15.0.0 15.7.1 From 1dd8ebfa1468cf7cb9b9fd837f5b00c96f2e5d93 Mon Sep 17 00:00:00 2001 From: Noelia Prol Carballo Date: Wed, 21 Jan 2026 12:16:13 +0100 Subject: [PATCH 4/5] fix: solve minor fixes at OTable docu --- docs/components/data/35-o-table.component.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/components/data/35-o-table.component.md b/docs/components/data/35-o-table.component.md index 34544ceb7..cbf86ffe6 100644 --- a/docs/components/data/35-o-table.component.md +++ b/docs/components/data/35-o-table.component.md @@ -994,7 +994,7 @@ Often when displaying numbers in a table, users want to show summary results of quick-filter="yes" filter-case-sensitive="true" > - + ``` @@ -1586,11 +1586,11 @@ If the selector `o-table-toolbar` is used together with `position='start'` the c - + - + ... - + ``` ![Add custom content in toolbar in position start]({{ "/assets/images/components/tabla/add-content-toolbar.png" | absolute_url }}){: .comp-example-img} From 2425041dc4d89be377972b54c90018c0fa1da75c Mon Sep 17 00:00:00 2001 From: Noelia Prol Carballo Date: Wed, 21 Jan 2026 12:32:03 +0100 Subject: [PATCH 5/5] fix: correct default values of selection-on-row-click --- _data/components/otableData/00table.yml | 2 +- _data/components/otableData/types/OTableGlobalConfig.yml | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/_data/components/otableData/00table.yml b/_data/components/otableData/00table.yml index eef3cbc55..bcbadb980 100644 --- a/_data/components/otableData/00table.yml +++ b/_data/components/otableData/00table.yml @@ -248,7 +248,7 @@ attributes: [{ type: "yes|no|true|false", description: "Indicates whether row selection is triggered when clicking on a row", required: "", - default: "no" + default: "yes" }] inheritedOutputs: [{ diff --git a/_data/components/otableData/types/OTableGlobalConfig.yml b/_data/components/otableData/types/OTableGlobalConfig.yml index 40375a2de..85e3f18e0 100644 --- a/_data/components/otableData/types/OTableGlobalConfig.yml +++ b/_data/components/otableData/types/OTableGlobalConfig.yml @@ -57,7 +57,7 @@ attributes: [{ },{ name: "selectionOnRowClick", type: "boolean", - default : "false", + default : "", required : "", description : "Indicates whether row selection is triggered when clicking on a row." }, @@ -80,7 +80,5 @@ attributes: [{ default : "{threshold:300 , minVisibleRows: 300}", required : "", description : "Configuration object for loading strategy." -} - -] +}]