From 1f657ee392dd7fccbbe63c49a9fa8cd59448d3d3 Mon Sep 17 00:00:00 2001 From: Noelia Prol Carballo Date: Thu, 11 Dec 2025 11:20:00 +0100 Subject: [PATCH 1/2] Escape { } --- docs/components/data/34-o-list.component.md | 22 ++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/components/data/34-o-list.component.md b/docs/components/data/34-o-list.component.md index 8169919dc..33c4b9d0b 100644 --- a/docs/components/data/34-o-list.component.md +++ b/docs/components/data/34-o-list.component.md @@ -39,8 +39,8 @@ The `o-list-item-text` component is used to display list items with a maximum of edit-button-in-row-icon="edit" detail-mode="none" pagination-controls="false" page-size-options="5;10" insert-button-position="bottom" show-buttons-text="false"> - + @@ -62,8 +62,8 @@ The `o-list-item-avatar` component is used to display list items with an avatar detail-button-in-row-icon="chevron_right" edit-button-in-row="false" edit-button-in-row-icon="edit" detail-mode="none"> - + @@ -82,7 +82,7 @@ The `o-list-item-card` component is used to display a card list item with text, [static-data]="data" refresh-button="true" quick-filter="true" insert-button="false" row-height="medium" detail-mode="none"> - @@ -103,8 +103,8 @@ The `o-list-item-card-image` component is used to display card list items with a [static-data]="data" refresh-button="true" insert-button="false" quick-filter="no" row-height="medium" detail-mode="none"> - @@ -124,16 +124,16 @@ When building an `o-list` component you can include one of the predefined list i
- +
- {{ row.name }} - {{ row.body }} + \{\{ row.name \}\} + \{\{ row.body \}\}
``` -![List item custom]({{ "/assets/images/components/list/list-item-custom.png" | absolute_url }}){: .comp-example-img} +![List item custom](\{\{ "/assets/images/components/list/list-item-custom.png" | absolute_url }}){: .comp-example-img} ## Custom content in toolbar new From 8ad54e001e77a214f84118e345176e03153f4e8e Mon Sep 17 00:00:00 2001 From: Noelia Prol Carballo Date: Fri, 12 Dec 2025 11:43:11 +0100 Subject: [PATCH 2/2] Using {%raw%} and {%endwar%} to escape characters --- docs/components/data/34-o-list.component.md | 30 ++++++++++----------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/components/data/34-o-list.component.md b/docs/components/data/34-o-list.component.md index 33c4b9d0b..205f3ab42 100644 --- a/docs/components/data/34-o-list.component.md +++ b/docs/components/data/34-o-list.component.md @@ -39,8 +39,8 @@ The `o-list-item-text` component is used to display list items with a maximum of edit-button-in-row-icon="edit" detail-mode="none" pagination-controls="false" page-size-options="5;10" insert-button-position="bottom" show-buttons-text="false"> - + @@ -62,8 +62,8 @@ The `o-list-item-avatar` component is used to display list items with an avatar detail-button-in-row-icon="chevron_right" edit-button-in-row="false" edit-button-in-row-icon="edit" detail-mode="none"> - + @@ -82,7 +82,7 @@ The `o-list-item-card` component is used to display a card list item with text, [static-data]="data" refresh-button="true" quick-filter="true" insert-button="false" row-height="medium" detail-mode="none"> - @@ -103,8 +103,8 @@ The `o-list-item-card-image` component is used to display card list items with a [static-data]="data" refresh-button="true" insert-button="false" quick-filter="no" row-height="medium" detail-mode="none"> - @@ -124,16 +124,16 @@ When building an `o-list` component you can include one of the predefined list i
- +
- \{\{ row.name \}\} - \{\{ row.body \}\} + {% raw %}{{ row.name }}{% endraw %} + {% raw %}{{ row.body }}{% endraw %}
``` -![List item custom](\{\{ "/assets/images/components/list/list-item-custom.png" | absolute_url }}){: .comp-example-img} +![List item custom]({{ "/assets/images/components/list/list-item-custom.png" | absolute_url }}){: .comp-example-img} ## Custom content in toolbar new @@ -141,12 +141,12 @@ The `o-list` component allows to add content in the toolbar with the selector `o If the selector `o-list-toolbar` is used together with `position='start'` the content will always be placed to the right of the New/Refresh/Delete buttons and if used together with `position='end'` the content will always be placed to the left of the quickfilter -```ts - +```html + - + - + ```