Marionette is a composite application library for Backbone.js which is a collection of common design and implementation patterns found in applications.
1
vote
0answers
412 views
Backbone/Marionette form with list of inputs
Using Backbone/Marionette, I'm building a simple widget that looks like:
I'm hoping to get some feedback on my approach because I think I may be doing it wrong.
jsfiddle
...
3
votes
1answer
469 views
Clicking child view and preventing parent view from running dblclick event
I have a parent view which has a dblclick event handler bound to it. I also have a view which is a descendant of the parent. This child view has a click event handler bound to it.
Currently, my code ...