我正在测试sproutcore todo的教程,我已经检查了第5步中的代码,至少就我的代码而言,它与我的代码相同,但是addButton没有响应点击事件。
addTask: function () {
var task;
task = Sinatra.store.createRecord(Sinatra.Task, {
'description': 'New Task',
'isDone': false,
'priority': 1
});
this.selectObject(task);
this.invokeLater(function () {
var contentIndex = this.indexOf(task);
var list = Sinatra.mainPage.getPath('mainPane.middleView.contentView')
var listItem = list.itemViewForContentIndex(contentIndex);
listItem.beginEditing();
});
return YES;
并在主要内容:
addButton: SC.ButtonView.design({
layout: { centerY: 0, height: 24, right: 12, width: 100 },
title: 'Add Task',
target: 'Sinatra.tasksController',
action: 'addTask'
}),
我看不出问题,请帮忙。
(我只在kubuntu上的firefox中测试了这个)
答案 0 :(得分:1)
我有类似的问题,我的解决方案是:
addButton: SC.ButtonView.design({
layout: { centerY: 0, height: 24, right: 12, width: 100 },
title: 'Add Task',
target: "Sinatra.tasksController",
action: "addTask"
}),