javascript - How to get child views from Backbone Marionette's composite view? - Stack Overflow

admin2025-04-03  0

I am working on an application based on Backbone and Marionette. I am using posite view to show an table now I want to update multiple child view's together So I want their object and model. So to access them

I read this method. I tried them on posite view object but none of the method is working and throwing the error message

CheckInOutCollectionView.findByIndex is not a function

How can I access the child view object?

I am working on an application based on Backbone and Marionette. I am using posite view to show an table now I want to update multiple child view's together So I want their object and model. So to access them

I read this method. I tried them on posite view object but none of the method is working and throwing the error message

CheckInOutCollectionView.findByIndex is not a function

How can I access the child view object?

Share Improve this question edited Feb 15, 2018 at 13:48 halfer 20.4k19 gold badges109 silver badges202 bronze badges asked Jan 30, 2015 at 12:15 Nikhil AgrawalNikhil Agrawal 26.6k21 gold badges93 silver badges127 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

If you know the index of the child view:

var child = collectionView.children.findByIndex(0)

If you want to find the child view for a particular model:

var child = collectionView.children.findByModel(model)

This works because CollectionView.prototype.children is a Babysitter ChildViewContainer instance.

This works for CompositeView instances as well because CompositeView extends CollectionView.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743628333a213840.html

最新回复(0)