A composite application library for Backbone.js that aims to simplify the construction of large scale JavaScript applications.
0
votes
0answers
10 views
Backbone / Marionette with FullCalendar Not Rendering
I'm attempting to use FullCalendar with a Backbone.Marionette.ItemView and it initially only renders the calendar control buttons. However, after resizing the window, clicking any calendar button or ...
0
votes
1answer
23 views
backbone.Marionette.js with spring or java complete tutorial [closed]
i am learning Bacbone.marionette.js now for single page application with spring. I am able to find many tutorials on backbone.marionette.js but not able to find one on integrating the same with spring ...
0
votes
1answer
16 views
Require.js JST files
This is my sample JST file
(function() {
var _ref;
if ((_ref = window.JST) == null) {
window.JST = {};
}
window.JST['test'] = function(context) {
return (function() {
var $o;
$o ...
0
votes
0answers
16 views
Basic mobile layout with Backbone Boilerplate and Marionette
I'm trying to build my first application using Backbone.js and Backbone.Marionette and because it's my first time I'm a little bit lost on how everything has to "work".
My app will have two panels ...
0
votes
2answers
29 views
Doing a lot of heavy lifting in the marionette router with lots of dependencies. Need a better set-up
Still a noob a mariontette.js
I'm using Require.js and Marionette.js together.
I have one router and this is the basic view of it.
define([many, many dependencies],function(many,many names of the ...
1
vote
2answers
43 views
Whats the Advantage of Marionette AppRouter+Controller over Backbone.Router?
From my understanding, the differences is the callback functions to events on an AppRouter should exist in the Controller, instead of the same Router object. Also there is a one-to-one relationship ...
0
votes
3answers
57 views
Backbone View render: fetch-first versus render-first, both approaches have faults?
This is more of a conceptual/architectural question than anything; the typical/popular approach to constructing and instantiating Backbone Views seems to be to only render the View AFTER successfully ...
2
votes
2answers
51 views
Two Collections inside a Composite View
So we are working on a project using marionette and we have made a good progress so far, but we struggling with a part of the marionette nested view model,
so lets assume that we have an apartment ...
1
vote
1answer
44 views
Backbone.Marionette Layout: Regions within Regions
I've got a quite complex (?) Layout in Backbone.Marionette where some of the Regions are placed within a MainRegion. All of this is part of CollectionView, so it's not possible to adress this Layout ...
0
votes
2answers
92 views
Backbone.js Marionette router and nested views
I'm diving into the whole "single page application" and Backbone.js (specifically Marionette) stuff. I'm working on a decently complicated application. I'm wondering how you set up the router to ...
2
votes
1answer
63 views
Adding Backbone.js to existing Spring MVC app
I'm working on a decently large Spring MVC app that continues to grow. It's a traditional Spring MVC app with the views being JSP that renders the HTML which is returned to the browser. The app uses ...
1
vote
0answers
40 views
Marionette CompositeView -> LayoutView -> ItemView - ViewEvents
i've got a CompositeView using a Layout with several Regions as ItemView:
var CompositeView = Backbone.Marionette.CompositeView.extend({
itemView: Layout,
template: _.template(...)
...
1
vote
1answer
41 views
Triggers and ui sections subclassing View subclasses
I couldn't find a question about this subject although I guess someone would have faced this problem before. Excuse me if I'm re-posting.
I have a problem with a component I'm creating. Imagine ...
1
vote
1answer
57 views
How do I send a model that was clicked on within a ItemView to another ItemView that is on the same page?
I have a collection of Tools displayed as a CompositeView. Each of the rendered items in this collection is an ItemView. The name of the region that holds these is called toolNameRegion.
I have ...
0
votes
2answers
38 views
How to get ID from URL
I am developing a Backbone Marionette web app.
I this app I got routes that look like this:
projects/:id/tasks
How can I get the ID of that route (URL)?
If I use this I get the whole URL:
...
1
vote
0answers
158 views
Bootstrap is murdering Backbone/Marionette view events
Backbone view event block binds perfect and awesome until you call a boot strap method on an element. Let's say you have this in your view:
events: { 'click .menu li.edit': '_doSomething' }
Then ...
0
votes
1answer
32 views
Access event object from Backbone Marionette ItemView trigger
I have the code below. I want to on <Enter> of the input#editTodo, I want to save the model (Todo). I figured I need to listen to the keypress event then check that the keycode is 13, if so I ...
1
vote
2answers
23 views
Backbone (Marionette) Edit View
How can I implement an editable view? For example, I have a PersonView. The default view will be showing the person info. Then when I double click, I want to enter "edit mode" where I can edit fields. ...
0
votes
1answer
38 views
Select Lists in Marionette CompositeView
I am using Marionette to try an render a list of questions. Each question can have a select list of question types that will also come from the server. I would prefer to keep this list in the top ...
0
votes
1answer
35 views
Pass Options from CollectionView to Recursive CompositeView
I'm doing something extremely similar to the tree structure described in this article:
http://lostechies.com/derickbailey/2012/04/05/composite-views-tree-structures-tables-and-more/
The idea is to ...
1
vote
1answer
41 views
Garbage collection in Backbone
* Updated - Added a sample code for one of the view *
This has been discussed a number of times and I have gone through a lot of suggestion on this topic but I still don't have any luck.
My ...
1
vote
1answer
30 views
How to show multiple views (CompositeView) in a region - Backbone Marionette
I have some CompositeViews, and i want to render it in a region.
CompositeView count is dynamic.
0
votes
2answers
64 views
Require.js & Marionette: defining includes when extending classes
I'm working on a project using Require.js, Backbone and Marionette, and the define/function calls at the top of my files are getting a bit ludicrous. I'd like to find a way to move the "includes" out ...
0
votes
1answer
71 views
how correctly change url hash with bootstrap tabs(pills) using marionetteJS?
I have bootstrap nav-pills on my page.
This is part of code:
<ul class="nav nav-pills offset3">
<li class="active">
<a href="#alphabetical" class="alphabetical_tab" ...
2
votes
1answer
33 views
Backbone Marionette module starting, regardless of startWithParent setting
I'm checking out Backbone Marionette and it seems promising for my current project. However, when adding modules they seem to auto start, regardless of the startWithParent setting. Here's a piece of ...
0
votes
1answer
40 views
event order Backbone.Marionette.Application.addInitializer and $(document).read()
trying to get a head around start up events...
so I created a fiddle http://jsfiddle.net/erichbschulz/59cDq/ for this
this:
console.log("starting");
MyInnerApp = new ...
0
votes
1answer
33 views
Marionette: Close all regions
When you set up a marionette application, you usually add regions to the Marionette.Application. Is there a way to close all the regions in Marionette.Application without having to know their ...
2
votes
2answers
74 views
MarionetteJS: Render only after fetch model success
How can I postpone rendering until a model is fetched in Marionette? I can listen to change event on the model, but then it will be rendered twice. Is there an elegant solution?
Manager.module ...
1
vote
1answer
88 views
Backbone.Marionette - Accessing variables in the ItemView template or CompositeView template
Here i want to access a variable or a list of variables which is passed when initalizing a new view from its corresponding template.
Code example
Creating a list view
@Taskit.module "Tasks.List", ...
0
votes
1answer
30 views
MarionetteJS version
Is there a way to get MarionetteJS version at runtime?
By runtime I mean something along the lines of
console.log(Backbone.VERSION); // or console.log(_.VERSION); // or ...
0
votes
1answer
62 views
Animate an item rendered into a Marionette collection view
I've a collection containing models that represent the apps navigation items. In my app the navigation is on the left side of the screen, and I want to be able to slide in the nav items one by one ...
0
votes
2answers
45 views
Backbone Model gives this.set not a function in Model.initialize
I've a model listen on the vent for a event "update:TotalCost", which is triggered from (unrelated) Collection C when any model M belonging to collection C changes.
This event is coded in the ...
0
votes
0answers
21 views
How can I request and inject a model into a simple view?
I am building a webapp using Backbone Marionette.
I am trying to open a single model, a simple show action.
How can I request and inject a model into a simple view?
Thankful for all input!
1
vote
2answers
68 views
Backbone Marionette CompositeViews show extra div tags
I'm trying to render a Bootstrap Navigation list using CompositeView and ItemView. The html I need to generate is something like
<ul class="nav nav-list">
<li class="nav-header">List ...
0
votes
1answer
61 views
Edit List using Backbone.js/Marionette
I'll start off with I'm new to these two frameworks but I'm really excited with what I've learned so far with them. Big improvement with the way I've been doing things.
I want to display a ...
1
vote
1answer
62 views
How to listen to jquery-ui events within a Marionette.ItemView
I do have some dynamically loaded ItemViews that load into layout regions. The templates contain jquery-ui components, e.g. a slider '#mySlider'. I do initialize the component with the ...
0
votes
1answer
30 views
How to pass parameters to a collection view server call?
I am developing a Backbone.Marionette web app.
In this app I got a project collection view. Each project can have different statuses (pending,active,completed). I would like to add buttons to the list ...
0
votes
2answers
57 views
Elegant way to wrap multiple Backbone render methods to avoid “before” and “after” event duplication?
I've divided the render() method on my View into two separate methods, in order to allow me to render the entire View, or just a small portion of the View, which is represented by an HTML form. The ...
0
votes
1answer
68 views
How to restart/reinitialize a Backbone Marionette Module
I have a Backbone Marionette application that is structured using Modules. I have a situation where I want to reinitialize a module but when I try to do this nothing happens. Here's the situation:-
...
1
vote
1answer
94 views
Event not triggering in Marionette Itemview
I am trying to trigger an event in the marionette itemview (List.SendQuestion), however, I was unable to register the trigger in the controller (as seen below)
Essentially, after clicking on the ...
1
vote
0answers
59 views
Need clarifications on adding regions dynamically in Marionette
I have an application where I need to display metrics. The application needs to display a separate vertical section for each metric. When I started this, there were only 5 metrics so I naively ...
0
votes
2answers
69 views
Backbone, correct way of saving data into a model?
I have two ways of saving data (into a rest API), it works Ok in both ways but I was wondering which one is the way to go.
1st way:
// here serializeObject just converts form inputs into a ...
2
votes
2answers
57 views
How to persist status messages/icons/notifications through Backbone View render?
I have save() and destroy() methods being called on a Model that sits behind a View, both of which display some sort of UI change (or "notification") within the View/template when they succeed or ...
0
votes
1answer
72 views
Trying to render dynamic dropdowns using Bootstrap and Marionette, sibling tag
<div class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Dropdown trigger</a>
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
...
0
votes
2answers
58 views
Correct way to set up Marionette Js with core AMD build?
I am learning Marionett on the side, and am trying to stick to the core amd build and not shim marionett. here's my require config:
require.config({
paths : {
backbone : 'lib/backbone',
...
0
votes
0answers
25 views
How to transfer parameter from one function to another for Paymill
I am creating a web app using Rails and Backbone/Marionette. I am trying to integrate Paymill payment service. The code below works fine to create the initial token but I need to get the form data ...
0
votes
0answers
34 views
Template issue with Backbone Marionette
I'm using Backbone Marionette in a simple application but there seems to be a problem with the templates. I'm using Require.js so each template is in a serarate HTML file. Here is one of them.
...
1
vote
4answers
93 views
Backbone: How to bind arguments for listenTo-callback?
Is it possible to bind function arguments for listenTo callback?
I've till now added a wrapper methods 'myHandler' which I would like to get rid of:
// Basic marionette layout
var view = ...
0
votes
1answer
42 views
Where is this event calling to in MarionetteJS
I am exploring the BBCloneMail demo application for MarionetteJS, but I am not seeing how the events are triggering the rendering actions. I saw some global 'show' event here:
...
2
votes
1answer
69 views
Backbone: Assign different collection to view
After having initialised a view in Backbone (actually Marionette), is it possible to change its collection? I use a nested model of a list of (main) items with additional sub items. The view displays ...


