Dmitry Sidorenko wrote:
Hi all.


Hi,

In my project I need to generate edit form for a class like this:

class Section{
 List<Section> subSectionList;
 List<Field> fieldList;
}
> [...]
Probably I'm doing something wrong, maybe my task should be done in completely different manner.. Any ideas?
Is there any way to develop visual editor for such a recursive classes?
I don't know how T4 works, but if it's like in T5, their is no support of recursive template/class. So, for tree structure, you have to use a non-recursive algorithm (I think that in your example, you wish to use a non-recursive preorder traversal). It's not really natural, but the non-support of recursive structure seems to bring a lots of simplification with it.

You can look at this How To entry : http://wiki.apache.org/tapestry/Tapestry5HowToCreateYourOwnComponents


I wish it would help.

Francois

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to