A composite application library for Backbone.js that aims to simplify the construction of large scale JavaScript applications.
0
votes
0answers
13 views
How can I efficiently reuse the same event for multiple views?
Approximately half of the views in my application contain a small gear icon that allows users to click and open a tools menu associated with that view. While the contents of each of these menus will ...
0
votes
1answer
11 views
Do ItemView triggers bubble up?
I have a CompositeView for a table. I have triggers set in the child ItemView for each row...
var TableRow = Marionette.ItemView.extend({
tagName: "tr",
template: ...
0
votes
1answer
25 views
removing parent classes in Backbone Marionette CompositeViews
Hi I'm trying to do a simple stuff(please take into consideration that I'm new in Marionette + CSS + jquery).
What I'm trying to do is:
I have to 2 divs that when the page is loaded, they have some ...
0
votes
1answer
30 views
How can I use Marionette in my typescript project with require.js
I'm having some error as below;
Uncaught ReferenceError: Marionette is not defined
I am using the following files(main.ts->config, app.ts-> first class of the app) with using the grunt watch ...
0
votes
1answer
15 views
CollectionView fails to render with empty collection
Why won't my Marionette CollectionView work with an empty collection?
I'm trying to render a CollectionView within a CompositeView (it's a list of tasks within each item of a list of projects). ...
1
vote
1answer
26 views
Default anchor action with Marionette Routing
I have a Marionette application that is composed of a series of steps, each step corresponding to a different view, each with an anchor tag in a navigation bar.
<a href="toolbox">Select ...
0
votes
1answer
28 views
Filter Backbone Collection without removing models
I'm working on a Backbone application to display songs pulled from Soundcloud.
I have the search bar working as a filter for the collection of songs.
Results is the list of songs
var matched = ...
0
votes
1answer
27 views
Animate all rendered views in Marionette?
In marionette version v1.0.0-rc3 source code line 1222 I have:
var template = this.getTemplate();
var html = Marionette.Renderer.render(template, data);
this.$el.html(html);
I am trying to animate ...
1
vote
2answers
38 views
Execute task when tab or enter is pressed on a form input text with Backbone/Marionette?
Is there a way I can execute my method when someone finishes adding/editing data on an input text and presses enter or tab in Backbone?
0
votes
1answer
48 views
New to marionette, router and controller config
I have been looking at the various marionette questions and not found what i'm after and was hoping someone could give me some sound advice and a couple pointers. I am new to this and just looking to ...
0
votes
0answers
26 views
Showing subset of website to user with not enough permission
I am developing app in backbone which requires UI elements [Menus,Table,Table-any-field] to be visible depending upon access level .Example Email-ID fields should not be shown to anyone except Admin.
...
0
votes
0answers
34 views
Why should a router's callback methods go to a Controller and not the App object itself?
I'm curious why a Marionette router should utilize another abstraction, the controller, to handle various route callbacks?
In my current application my Application object is very thin but my ...
1
vote
1answer
38 views
Good pattern for doing additive routes in Backbone
I have looked at subrouting ideas like those in BackboneMVC and Backbone Marionette.
I think I'm looking for something a little different.
Has anyone come up with good patterns for, not subroutes, but ...
0
votes
2answers
23 views
Marionette CollectionView: how to check whether item is added because of “reset” or “add”?
I am using Marionette's CollectionView to render a list of items with ItemViews. Whenever a new item is added, I want to run a short fade-in animation. But not when the collection is rendered ...
0
votes
0answers
25 views
Jade Template with Backbone/Marionette
I'm trying to render a table using a Marionette CompositeView/ItemView and am running into issues with the jade template. The table "shell" is rendered correctly for the composite view but the ...
0
votes
1answer
28 views
Where to use event aggregator in backbone marionette?
I want to implement a custom vent event aggregator instance with requirejs as explainer here
Looking at examples here and in the docs, I've seent that calls to vent.on and vent.trigger are mainly ...
0
votes
2answers
54 views
How do I design MarionetteJS ItemView to properly show loading message?
First off - I am a MarionetteJS noob.
I am having trouble making an ItemView display a loading message or throbber while it is being fetched. This is especially problematic when this ItemView is ...
1
vote
2answers
45 views
low coupling: add a model to a collection of a different view
i'm building a Backbone/Marionette application to list different sets of cards. the layout has an ItemView on the left side including an input field to add a new set and a CompositeView on the right ...
1
vote
0answers
26 views
Backbone.Marionette view element initialization location
I have a general question regards where I should do view element addin initialzation. Say for instance I have a typeahead plugin that requires initialization like so.
$(element).typeahead();
Using ...
1
vote
2answers
38 views
Appending another view within a region - marionette
I was using Backbone LayoutManager for managing my views within the app. I wanted to try marionette. I came across a issue where i couldn't append a view to a region.
HTML
<body>
<div ...
1
vote
2answers
77 views
How do I clear out an array's contents and replace with new contents of nested collection?
I have a Project model that has a nested collection of ProjectSlides. The project slides are images that I would like (to iterate over) to show which are specific to the particular project that was ...
1
vote
1answer
29 views
Design decisions in TodoMVC for Backbone Marionette example
I am wondering why in TodoMVC Backbone Marionette, a Marionette.Layout was used for Footer instead of a simple ItemView like Header?
Also why use a CompositeView for TodoList.Views.ListView instead ...
0
votes
0answers
38 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
36 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
23 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
23 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
42 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
59 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
70 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
3answers
73 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
58 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
142 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
85 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
53 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
44 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
60 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
41 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
180 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
45 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
35 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
50 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
41 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
48 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
39 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
82 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
95 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
36 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
48 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
37 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
101 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 ...



