WAInputDialog


Seaside-Components-Dialogs

Comment:



Hierarchy:

ProtoObject
Object
WAPresenter
WAComponent
WAInputDialog

Summary:

instance variables:

label value

methods:

instance class
as yet unclassified no messages

Detail:

instance variables:

label
value

instance methods:

as yet unclassified
default: aString

	value _ aString
label

	^ label ifNil: [label _ 'OK']
label: aString

	label _ aString
renderContentOn: html

	html form: [
		html defaultAction: [self answer: value].
		html textInputWithValue: value callback: [:v | value _ v].
		html space.
		html submitButtonWithText: self label.
	]

class methods:

^top


- made by Dandelion -