-
Notifications
You must be signed in to change notification settings - Fork 650
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Form Decorator not inherited in sub sections #29
Comments
Interesting... I'll check it out. |
I think the problem lies in the var templateUrl = function(name,form) {
//schemaDecorator is alias for whatever is set as default
if (name === 'sfDecorator') {
name = defaultDecorator;
} This will always pick the default decorator inside of sections. |
I think the same applies for sf-options. The formDefaults validation messages I specify in sf-options are applied to top level form elements, but not to those contained in sections. |
@shendrix Thats bad... a worse bug indeed. |
@davidlgj I noticed the bug I mention above is fixed in the development branch. However, if I have a key such as topobject.subproperty, validation messages are still not propagated even in the development branch. Example:
|
I'm opening a new issue on that one so it doesn't get lost #121 |
When I specify a custom decorator for my form like
to use other templates than the templates from the default decorator, on top level everything works fine.
But inside sections this specified decorator doesn't seem to be inherited and the default decorator is used.
The text was updated successfully, but these errors were encountered: