backbone-forms icon indicating copy to clipboard operation
backbone-forms copied to clipboard

Form framework for BackboneJS with nested forms, editable lists and validation

Results 100 backbone-forms issues
Sort by recently updated
recently updated
newest added

Numeric input control can be invalid (for example`` with **123....456** text). but validation mechanism returns OK. It uses `this.$el.val()` which returns empty for invalid control. As a result all validators...

discuss

In the Select editor, renderOptions will call setValue with this.value after rendering children. However, if the chosen value in a selection has changed, this only triggers a change event, it...

discuss

I am currently using Marionette and would like to use backbone-forms. However, since forms inherits directly from Backbone, I am unsure how to proceed. Can I just change backbone-forms to...

This commit removes distribution-file changes from pull request #452 Sorry for the double PR, I had deleted the fork a while ago and I can't seem to edit the original...

This is related to #361 and #363 and allows render to maintain values for the Object and NestedModel editor. The Object changes are completely untested and the NestedModel hasn't been...

I wanted to be able to override the fields rendered and template used by the nested form. Contrived example: ``` javascript new Backbone.Form({ schema: { address: { type: "NestedModel", model:...

requires-test

Form.Field's templateData() doesn't pass the schema type through, which i think it should. this means that you can't make the field template react even a little to the schema type....

improvement

I need to add a dynamic bootstrap `add-on` to one of my text inputs. As I didn't find a way on how to access "custom attributes" of the field from...

Simple change to the regex to allow negative numbers

I struggled for a while trying to get NestedModels to work properly. The reason it wasn't working was because my parent model was declared before the nested one. This problem...

requires-test