From 77c2e963b6e8f154be050e3dc5a9ae28ab2a2c70 Mon Sep 17 00:00:00 2001 From: nprol <134269709+nprol@users.noreply.github.com> Date: Tue, 9 Sep 2025 14:01:02 +0200 Subject: [PATCH 1/2] removed double row height content (#687) Co-authored-by: Noelia Prol Carballo --- docs/components/data/35-o-table.component.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/docs/components/data/35-o-table.component.md b/docs/components/data/35-o-table.component.md index 02e9816a2..4d24f9501 100644 --- a/docs/components/data/35-o-table.component.md +++ b/docs/components/data/35-o-table.component.md @@ -1476,13 +1476,6 @@ The default value being `medium` with `small` being the most compact option and ![Input row-height]({{ "/assets/images/components/tabla/row-height.png" | absolute_url }}){: .comp-example-img} -### Row height -In the o-`table` you can configure various density levels using `row-height` property that it is easy to specify the font and the paddings on the table defined in this [link]({{ base_path }}/customize/typography/#custom-typography-of-ontimize-web-framework). - -The default value being `medium` with `small` being the most compact option and `large` being the least. - -![Input row-height]({{ "/assets/images/components/tabla/row-height.png" | absolute_url }}){: .comp-example-img} - ### Report on demand new The `o-table` component has a new option in table menu that allows the final users of the applications developed with Ontimize to define, view and store reports from any table available in the application. This menu option is enabled by default. Using `show-report-on-demand-option` property you can modify the default value. For more information see the **API**. You can also find more information about reports in their documentation following this [link]({{ base_path }}/addons/report/components/report-on-demand/overview){:target="_blank"}. From d4d9cf91f6bbb68d2743da5163dc5ba80ab4496f Mon Sep 17 00:00:00 2001 From: nprol <134269709+nprol@users.noreply.github.com> Date: Tue, 9 Sep 2025 14:13:29 +0200 Subject: [PATCH 2/2] changed o-table-column-aggregate input name (#689) Co-authored-by: Noelia Prol Carballo --- _data/components/otableData/05tableColumnAggregate.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/_data/components/otableData/05tableColumnAggregate.yml b/_data/components/otableData/05tableColumnAggregate.yml index 840fa37c1..ea9411402 100644 --- a/_data/components/otableData/05tableColumnAggregate.yml +++ b/_data/components/otableData/05tableColumnAggregate.yml @@ -3,28 +3,28 @@ class : "OTableColumnAggregateComponent" directive : "o-table-column-aggregate" attributes: [{ - name: "attr", + name: "attr", type: "string", default : "", required : "yes", description : "Column name" },{ - name: "title", + name: "title", type: "string", default : "", required : "", description : "Title for the header total column." }, { - name: "aggregate", + name: "aggregate", type: "sum | count | avg | min | max", default : "sum", required : "", description : "Default functions aggregate" },{ - name: "functionAggregate", + name: "function-aggregate", type: "(value:any[]) => number ", default : "", required : "", description : "Custom function aggregate" -}] +}]