Skip to content

Instantly share code, notes, and snippets.

Created July 7, 2009 01:04
Show Gist options
  • Save anonymous/141801 to your computer and use it in GitHub Desktop.
Save anonymous/141801 to your computer and use it in GitHub Desktop.
layoutView : SC.SplitView.design({
// the left view...
topLeftView: SC.View.design({
childViews: 'inputListView'.w(),
layout: {width:100},
inputListView : SC.SplitView.design({
layoutDirection : SC.LAYOUT_VERTICAL,
topLeftView: SC.View.design({
layout:{height:100}
}),
bottomRightView:SC.View.design({
})
})
}),
// the right view
bottomRightView: SC.View.design({
// view contents
})
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment