Check out the following discussion [1] to see if it's of help.
Regards
[1] https://groups.google.com/forum/#!topic/pylons-discuss/55FXAMkde4w
self.children = []
self.__dict__.update(kw)
for child in schema.children:
self.children.append(Field(child,
renderer=renderer,
counter=self.counter,
resource_registry=resource_registry,
**kw))
in Field.__init__ has already taken place (and so manipulating the
order in the schema doesn't help anymore). I guess my question boils
down to whether I can regard the "children" list on deform.Field as
public API.
> --
> You received this message because you are subscribed to the Google Groups "pylons-discuss" group.
> To post to this group, send email to pylons-...@googlegroups.com.
> To unsubscribe from this group, send email to pylons-discus...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
>