A single view that is comprised of multiple pieces.
Questions tagged [composite-view]
6 questions
2
votes
2 answers
CompositeView - An event which will be fired post rendering of all the child records
I'm trying to render list of records using CompositeView and I'm unable to identify an event which will be fired post rendering of all the child records.
I went through the documentation and found below methods which have not worked yet -…

Sachin Hegde
- 53
- 4
2
votes
1 answer
Ui Router: composite view render view once
What I want to achieve is have 2 sibling views, where 1 is run-once and the other will get updated.
I have a template like so:
And I have 1 catch-all state:
.state('root', {
params:…

Jakob Jingleheimer
- 30,952
- 27
- 76
- 126
1
vote
1 answer
Marionette CompositeView - Child remains in this.children
I'm currently working with a CompositeView. The problem is, when I call destroy() on one of the child views from the CollectionView part, it still remains in the this.children._view obejct, even do it disappears from the screen.
If I try to do…

Dave
- 49
- 8
0
votes
1 answer
MVVMCross 4.1.4 Composite Views
Iam currently trying to implement composite views in my app for the tablet layout, so i dont need the Viewpager and TabLayout which is used in the phone layout.
But apparently it is not as easy as i thought it would be and the examples/tutorials…

Noires
- 643
- 8
- 19
0
votes
1 answer
Marionette: setting collection after render doesn't update on model add
I have a nested composite view that checks its model for a collection, and if so sets that collection to itself as its collection.
onRender: ->
if model.attributes.has_collection
@collection = model.get 'myCollection'
This works quite well…

jacob.mccrumb
- 681
- 5
- 18
0
votes
2 answers
Marionette CompositeView - change in template each nth items
I'm using Marionette for a while, but I'm not sure how I can do what I want, in a simple manner.
I have a composite view, which renders something like this:
Each…

George Silva
- 3,454
- 10
- 39
- 64