smalltalk
/
osmo-st-all
Archived
1
0
Fork 0
This commit is contained in:
Sébastien Audier 2009-08-21 00:44:29 +00:00
parent 01bd02c6a0
commit e11ca9b9cd
1 changed files with 9 additions and 1 deletions

View File

@ -41,6 +41,11 @@ Widget subclass: TodoListItemEditor [
<comment: nil>
<category: 'Iliad-Core-Examples'>
cancel [
<category: 'accessing'>
self answer: nil
]
completedContents [
<category: 'building'>
^[:e |
@ -93,7 +98,10 @@ Widget subclass: TodoListItemEditor [
tbody tableRow build: self completedContents.
(form button)
action: [self saveItem];
text: 'save']
text: 'save'.
form button
action: [self cancel];
text: 'cancel']
]
titleContents [