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

10 lines
252 B
Smalltalk

rendering
renderFullnameFieldOn: html
html tbsFormGroup: [
html label: 'Fullname'.
html textInput
tbsFormControl;
placeholder: 'fullname';
callback: [ :value | self contact fullname: value ];
value: (self contact fullname ifNil: '')
]