WANavigationBar


Seaside-Components-Widgets

Comment:



Hierarchy:

ProtoObject
Object
WAPresenter
WAComponent
WANavigationBar

Summary:

instance variables:

actionsSelector mOwner

methods:

instance class
as yet unclassified no messages

Detail:

instance variables:

actionsSelector
mOwner

instance methods:

as yet unclassified
actions

	^ self target perform: actionsSelector
actionsSelector: aSymbol

	actionsSelector _ aSymbol
initialize

	actionsSelector _ #actions
owner: anObject

	mOwner _ anObject
renderContentOn: html

	self actions do:
		[:symbol |
		symbol numArgs = 0
			ifTrue: [self renderLink: symbol on: html]
			ifFalse: [self renderInput: symbol on: html]]
renderInput: aSymbol on: html

	html form: [
		html bold: aSymbol capitalized.
		html space.
		html textInputWithValue: '' callback: [:v | self target perform: aSymbol with: v].
	]
renderLink: aSymbol on: html

	html anchorOn: aSymbol of: self target.
	html break
target

	^ mOwner activeComponent

class methods:

^top


- made by Dandelion -