Seaside Scrapbook

register an application:

WAAdmin register: AppClassName asApplicationAt: #webname

html textInput on: #name of: self contact
is shorthand for
html textInput callback: [ :value | self contact name: value ]; with: self contact name
and similarly for other tags. See http://book.seaside.st/book/fundamentals/forms/convenience for more on `onโ€™.

โ€œYou can think of the call/answer pair as the Seaside component equivalent of raising and closing a modal dialog respectively.โ€