Skip to content

Instantly share code, notes, and snippets.

@gmoeck
Created January 10, 2011 17:00
Show Gist options
  • Save gmoeck/773047 to your computer and use it in GitHub Desktop.
Save gmoeck/773047 to your computer and use it in GitHub Desktop.
Todos.mainPage = SC.Page.design({
mainPane: SC.MainPane.design({
childViews: 'middleView'.w(),
middleView: SC.ScrollView.design({
hasHorizontalScroller: NO, //ADDED THIS
layout: { top: 36, bottom: 32, left: 0, right: 0 }, //ADDED THIS
backgroundColor: 'white', //ADDED THIS
childViews: 'contentView'.w(),
contentView: SC.ListView.design({
contentBinding: 'Todos.tasksController.arrangedObjects',
contentValueKey: 'description', //ADDED THIS
contentCheckboxKey: 'isDone' //ADDED THIS
})
}),
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment