Files
contact-book/ContactBook.package/WAContact.class/instance/renderEmailFieldOn..st
2018-05-12 15:25:36 +02:00

10 lines
254 B
Smalltalk

rendering
renderEmailFieldOn: html
html tbsFormGroup: [
html label: 'Email'.
html emailInput
tbsFormControl;
placeholder: 'your@email.eu';
callback: [ :email | self contact email: email address ];
value: (self contact email ifNil: '')
]