Skip to content
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

Open
torstenrudolf opened this issue Jul 22, 2014 · 6 comments
Open

Form Decorator not inherited in sub sections #29

torstenrudolf opened this issue Jul 22, 2014 · 6 comments
Milestone

Comments

@torstenrudolf
Copy link
Contributor

When I specify a custom decorator for my form like

<form sf-schema="schema"
      sf-form="form"
      sf-model="data"
      sf-decorator="my-horizontal-form-decorator"
      class="form-horizontal"
      >
</form>

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.

@davidlgj davidlgj added the bug label Jul 22, 2014
@davidlgj
Copy link
Contributor

Interesting... I'll check it out.

@torstenrudolf
Copy link
Contributor Author

I think the problem lies in the schemaFormDecorator line 5:

  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.

@shendrix
Copy link

shendrix commented Oct 9, 2014

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.

@davidlgj
Copy link
Contributor

@shendrix Thats bad... a worse bug indeed.

@shendrix
Copy link

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

{
    "type": "section",
    "title": "New section",
    "items": [
        {
            "key": "topobj.subproperty"
            "title": "Validation messages set in global options not propagated to me"
        }
    ]
}

@davidlgj
Copy link
Contributor

I'm opening a new issue on that one so it doesn't get lost #121

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants