thorsten codeho
thorsten codeho

Reputation: 154

Example for Backbone-relational with Marionette views

I've just recently stared using backbone.js and since i have a rather large data-structure, i am using backbone-relational in order to keep it as lean and as fast as possible.

Now i would like to use marionette views, but i've been struggling to get the rendering for collections of collections and childviews and all that to work nicely.

So i was wondering if anyone has a example that would use backbone-relational AND marionette at the same time, that shows how to deal with the views correctly.

any help is greatly appreciated

C

Upvotes: 4

Views: 1364

Answers (1)

Kalpers
Kalpers

Reputation: 658

Marionette has a CompositeView that works best with nested collections.

Marionette CompositeView documentation

Marionette CompositeView Article

Upvotes: 1

Related Questions