Marionette is a composite application library for Backbone.js which is a collection of common design and implementation patterns found in applications.
2
votes
0answers
38 views
Show a subview in Backbone.Marionette
I use Marionette for my JavaScript application (requirejs for module structure). Application has router and controller. When starting, application renders the root view. Controller executes actions on ...
1
vote
0answers
61 views
Statistic Chart With Filter
I have created an app, which show chart, table detail of chart, with filter date. I created app with Backbone and Marionette, chart with Chartist.js, and the filter date I'm using Pikaday.js and ...
4
votes
0answers
153 views
Secret Santa Application : Practical Interview Test
I was given a practical task as part of an interview for a front-end developer position. There is a follow up interview and I'm looking for some constructive criticism / tough love to help me prepare.
...
1
vote
1answer
1k 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
1k 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 ...