Answered by
sandulat
May 31, 2025
Replies: 2 comments 1 reply
|
@sn4h did you try using an entity of type group maybe and children of type row with relation constraints ? |
0 replies
|
@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. |
1 reply
Answer selected by
sandulat
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

@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.