0

小提琴:

http://jsfiddle.net/lifeinafolder/mpcRr/

本质上,我想隐藏当前的“可见”项目并使下一个“可见”,但 toggleProperty 似乎不适用于 childView 对象。它只是默默地失败并且也不会抛出任何错误。

4

2 回答 2

2

CollectionView 将显示集合中的所有项目,这不是您想要的。我将实现一个标准视图,该视图包含集合并在其中显示下一个按钮和一个幻灯片视图,当容器视图将选定的幻灯片设置为幻灯片视图上的内容时,该视图显示选定的幻灯片。

于 2012-07-06T18:53:11.843 回答
0

一个非常丑陋的解决方案,几乎可以工作。我保留了切换视图的方式。

模板是一样的,js看起来是这样的:

App = Ember.Application.create();

App.slides = Ember.ArrayProxy.create({
    content:[]
});

App.slidesCollectionView = Ember.CollectionView.extend({
    contentBinding:"App.slides",
    tagName:'div',
    emptyView: Ember.View.extend({
        template: Ember.Handlebars.compile("<div class=\"placeholder\">placeholder</div>")
    }),
    itemViewClass:"App.slideView",
    classNames:["slideshow"],
    click:function(){
        var t = Ember.ArrayProxy.create({ content: this.get('childViews') });
        var selected = t.findProperty('isVisible', true);
        if(selected){
            var nextSlide = t.objectAt(selected.get('contentIndex') + 1);
            selected.set('isVisible', false);
            if(nextSlide){
                nextSlide.set('isVisible', true);
            }else{
                t.get('firstObject').set('isVisible', true);
            }
        }else{
            t.get('firstObject').set('isVisible', true);

        }            
    }
});

App.slideView = Ember.View.extend({
    templateName: 'slide-item',
    tagName:'div',
    isVisible: false,
    classNames:['slide'],
    classNameBindings:['isVisible:selected']
});

setTimeout(function(){
App.slides.pushObjects([
    Ember.Object.create({val:'a',index:0}),
    Ember.Object.create({val:'b',index:1}),
    Ember.Object.create({val:'c',index:2}),
    Ember.Object.create({val:'d',index:3}),
    Ember.Object.create({val:'e',index:4}),
    Ember.Object.create({val:'f',index:5})
])},2000);

小提琴:

http://jsfiddle.net/Sly7/dd6at/

于 2012-07-05T21:51:08.623 回答