[Seaside] textArea rows

Ramon Leon ramon.leon at allresnet.com
Sun Nov 4 16:27:54 UTC 2007


> renderCommentOn: html
>         html textArea
>                 rows: anInteger;
>                 on: #comment of: model
> 

Learn to fish.  Look in WARenderCanvas>>tagName to see what tag is returned.
#textArea for example looks like this...

WARenderCanvas>>textArea
	^ self brush: WATextAreaTag new

Then go look at the tag class and you'll see #rows: as a valid selector.
Chasing down the appropriate tag object is by far the fasted method for
figuring out how to write valid code and seeing just what is and isn't
supported.  The code really is the best documentation.

Ramon Leon
http://onsmalltalk.com



More information about the seaside mailing list