Skip to content

Commit 9319e3e

Browse files
authored
Merge pull request #25983 from abpframework/salihozkara/add-lowcode-formula-doc-navigation
docs: add Low-Code formula navigation
2 parents d7300da + dc71c2e commit 9319e3e

4 files changed

Lines changed: 16 additions & 0 deletions

File tree

docs/en/docs-nav.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2153,6 +2153,14 @@
21532153
"text": "Low-Code Designer",
21542154
"path": "low-code/designer.md"
21552155
},
2156+
{
2157+
"text": "Calculated and Rollup Properties",
2158+
"path": "low-code/formula-properties.md"
2159+
},
2160+
{
2161+
"text": "Low-Code Expression Language",
2162+
"path": "low-code/expression-language.md"
2163+
},
21562164
{
21572165
"text": "React Runtime",
21582166
"path": "low-code/react-runtime.md"

docs/en/low-code/designer.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ Use **Data** to define the domain model.
4242

4343
Entities contain properties, display names, display property configuration, inherited audit fields, relations, and optional interceptors. Enums are created once and then used by enum properties.
4444

45+
For virtual fields derived from the current record or related records, see [Calculated and Rollup Properties](formula-properties.md). For the supported scalar formula syntax, see the [Low-Code Expression Language](expression-language.md) reference.
46+
4547
![Entity summary in the designer](images/designer-entity.png)
4648

4749
![Entity property list](images/designer-properties.png)

docs/en/low-code/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,8 @@ The designer stores and reads the same descriptor metadata described in the refe
176176
| Topic | Use it for |
177177
|-------|------------|
178178
| [Designer](designer.md) | Admin Console tabs, entity/page/form setup, permissions, and health |
179+
| [Calculated and Rollup Properties](formula-properties.md) | Virtual scalar formulas and related-record aggregates authored in the Designer |
180+
| [Low-Code Expression Language](expression-language.md) | Provider-safe scalar syntax used by calculated properties and formula backfills |
179181
| [Add Low-Code to an Existing Solution](add-to-existing-solution.md) | Retrofitting an existing EF Core solution with Studio import plus manual backend and React wiring |
180182
| [Use Low-Code from a Non-React Application](non-react-ui-integration.md) | Keeping an MVC, Razor Pages, Angular, or Blazor UI while hosting the React Low-Code runtime and Designer alongside it |
181183
| [React Runtime](react-runtime.md) | React package wiring, routes, menu items, filters, forms, and export |
@@ -207,6 +209,8 @@ The generated pages are powered by these services:
207209
## See Also
208210

209211
* [Low-Code Designer](designer.md)
212+
* [Calculated and Rollup Properties](formula-properties.md)
213+
* [Low-Code Expression Language](expression-language.md)
210214
* [Add Low-Code to an Existing Solution](add-to-existing-solution.md)
211215
* [Use Low-Code from a Non-React Application](non-react-ui-integration.md)
212216
* [React Runtime](react-runtime.md)

docs/en/low-code/model-json.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,8 @@ Entities describe the persisted data model. UI is not configured with legacy pro
241241
| `foreignKey` | Lookup relation metadata |
242242
| `validators` | Backend/UI validation rules |
243243

244+
For virtual calculated fields and related-record aggregates, see [Calculated and Rollup Properties](formula-properties.md). The [Low-Code Expression Language](expression-language.md) reference documents the scalar syntax used by calculated properties and formula backfills.
245+
244246
### Property Types
245247

246248
| Type | Description |

0 commit comments

Comments
 (0)