mindless_mind
mindless_mind
Hi. I can confirm that this fixes link errors on my Debian Jessie.
For me following did the trick: var select = new Backbone.Form.editors.Select({ schema: { key: 'country', options: collection, title: 'Countries', validators: [], editorClass: '', fieldClass: '', } }); $('body').append(select.render().el);
Memento for anybody whom is using this library (just like me). Example how to personalize fieldsets using different templates: ``` let schema = {};/// your schema let model = new...