Jonathan Fleury
Jonathan Fleury
An object could be created dynamically and binded later. I often create objects with backbone view at runtime. ``` var element1 = Backbone.view.extend({ tagName : 'input', .... render : function(){...
Input element could have more complex code which make it easier to be itself a View. For example, if it contain auto-complete feature with his own collection and model.
When a form is complex, I prefer sometime have multiple views rather that a big one.
Ok I understand what you mean. I though it could be convenient to add this but maybe I'm wrong. My personnal project is a dynamic forms generator who create fields...