Node factories - inherited concepts Follow
Hi all,
I've created node factory for nodes of base concept say "B".
But it isn't applied to nodes of inherited concepts.
What should I do to make node factory work on the nodes of concepts inherited from B.
I don't want to define the same factory for every concept.
Thank you.
Please sign in to leave a comment.
If you want to add a handler on a node creation, which works with subconcepts, you should use behavior tab of concept declaration. You can specify constructor there but it doesn't have so many parameters as node factories do.
So, if I add some actions to the constructor of a base concept, these actions will be executed for all inherited concepts. Am I right?
Yes, you are right.