-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
@sn4h did you try using an entity of type group maybe and children of type row with relation constraints ? |
Beta Was this translation helpful? Give feedback.
-
|
@sn4h It is indeed possible. Here's a live example I implemented for your use case: The idea is that you can define multiple builders, nest them within each other, and recursively chain their validations. Feel free to take a look at the code and let me know if you need any help. |
Beta Was this translation helpful? Give feedback.

@sn4h It is indeed possible. Here's a live example I implemented for your use case:
https://stackblitz.com/edit/coltorapps-builder-nested-cjr4c9p6
The idea is that you can define multiple builders, nest them within each other, and recursively chain their validations.
The example includes a
mainbuilder used to createsectionandtableentities, and atablebuilder whose schema is stored in thecolumnsattribute oftableentities.Feel free to take a look at the code and let me know if you need any help.