From 3113cbe46c6e44493f24db7a2e63c5e606f5c4f8 Mon Sep 17 00:00:00 2001 From: sumeyye Date: Fri, 16 Jan 2026 08:49:53 +0300 Subject: [PATCH] fix: document escape character errors --- .../ui/angular/extensible-table-row-detail.md | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/en/framework/ui/angular/extensible-table-row-detail.md b/docs/en/framework/ui/angular/extensible-table-row-detail.md index 1e982606f3..0ae24e69e1 100644 --- a/docs/en/framework/ui/angular/extensible-table-row-detail.md +++ b/docs/en/framework/ui/angular/extensible-table-row-detail.md @@ -44,9 +44,9 @@ Place `` inside `` with a
-
{{ row.name }}
-

ID: {{ row.id }}

-

Status: {{ row.isActive ? 'Active' : 'Inactive' }}

+
{%{{{ row.name }}}%}
+

ID: {%{{{ row.id }}}%}

+

Status: {%{{{ row.isActive ? 'Active' : 'Inactive' }}}%}

@@ -61,7 +61,7 @@ An expand/collapse chevron icon will automatically appear in the first column of | Input | Type | Default | Description | |-------|------|---------|-------------| -| `rowHeight` | `string | number` | `'100%'` | Height of the expanded row detail area | +| `rowHeight` | `string` | `number` | `'100%'` | Height of the expanded row detail area | ### Template Context Variables @@ -81,8 +81,8 @@ Display additional information when a row is expanded:
- Details for: {{ row.name }} -
{{ row | json }}
+ Details for: {%{{{ row.name }}}%} +
{%{{{ row | json }}}%}
@@ -109,7 +109,7 @@ Apply conditional styling based on expansion state:
-

This row is {{ expanded ? 'expanded' : 'collapsed' }}

+

This row is {%{{{ expanded ? 'expanded' : 'collapsed' }}}%}

@@ -123,16 +123,16 @@ Apply conditional styling based on expansion state:
-

{{ 'MyModule::Name' | abpLocalization }}:

-

{{ row.name }}

+

{%{{{ 'MyModule::Name' | abpLocalization }}}%}

+

{%{{{ row.name }}}%}

-

{{ 'MyModule::Status' | abpLocalization }}:

+

{%{{{ 'MyModule::Status' | abpLocalization }}}%}

@if (row.isActive) { - {{ 'AbpUi::Yes' | abpLocalization }} + {%{{{ 'AbpUi::Yes' | abpLocalization }}}%} } @else { - {{ 'AbpUi::No' | abpLocalization }} + {%{{{ 'AbpUi::No' | abpLocalization }}}%} }

@@ -154,7 +154,7 @@ For simpler use cases, you can use the `rowDetailTemplate` input on ` -
{{ row.name }}
+
{%{{{ row.name }}}%}
```