WAFormDecoration


Seaside-Components-Decorations

Comment:



Hierarchy:

ProtoObject
Object
WAPresenter
WADecoration
WAFormDecoration

Summary:

instance variables:

buttons

methods:

instance class
as yet unclassified no messages

Detail:

instance variables:

buttons
inferredType:
UndefinedObject

instance methods:

as yet unclassified
buttons

	^ buttons
buttons: selectorArray

	buttons _ selectorArray
renderButtonForSelector: aSymbol on: html

	html submitButtonOn: aSymbol of: self owner
renderButtonsOn: html

	html divClass: 'dialog-buttons' with: [
		self buttons do:
			[:ea |
			html spanNamed: ea with: [self renderButtonForSelector: ea on: html]]
	]
renderContentOn: html

	html form: [
		self renderOwnerOn: html.
		self renderButtonsOn: html.
	]

class methods:

^top


- made by Dandelion -