Created
November 18, 2014 15:05
-
-
Save publickeating/3743ce265421a6285b86 to your computer and use it in GitHub Desktop.
Basic SproutCore Form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
myForm: SC.View.extend({ | |
childViews: ['nameLabel', 'givenNameField', 'familyNameField', 'imageField', 'phoneLabel', 'phoneField', // ... etc. ], | |
// To save us the trouble of offsetting each view independently, we use a child layout plugin that stacks them vertically. | |
childViewLayout: SC.View.VERTICAL_STACK, | |
childViewLayoutOptions: { paddingBefore: 35, paddingAfter: 35, spacing: 14 }, | |
nameLabel: SC.LabelView.extend({ | |
classNames: ['form-label'], | |
layout: { left: 20, height: 20 }, | |
value: "_ContactFormContactLabel" | |
}), | |
givenNameField: SC.TextFieldView.extend({ | |
classNames: ['form-field'], | |
hint: "_GivenNameHint", | |
layout: { borderBottom: 1, height: 30, left: 20 }, | |
valueBinding: 'SL.editObjectController.givenName', | |
}), | |
familyNameField: SC.TextFieldView.extend({ | |
classNames: ['form-field'], | |
hint: "_FamilyNameHint", | |
layout: { borderBottom: 1, height: 30, left: 20 }, | |
valueBinding: 'SL.editObjectController.familyName' | |
}), | |
phoneLabel: SC.LabelView.extend({ | |
classNames: ['form-label'], | |
layout: { left: 20, height: 20 }, | |
marginBefore: 50, // Instruct the child layout plugin to leave 50px margin before this view. | |
value: "_PhoneLabel" | |
}), | |
// etc. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment