[Seaside] Strange script behavior

Lukas Renggli renggli at gmail.com
Fri Feb 18 07:02:14 UTC 2011


Don't know what #javascriptItemsConcatenated does, but there is
already such functionality in Seaside. In the class JSScript, if I
remember correctly. Maybe that makes a difference?

Lukas

On Friday, 18 February 2011, Robert Sirois <watchlala at hotmail.com> wrote:
>
>
>
>
>
> Has anyone had a problem where you load a script like this...
> renderMeOn: html
> 	self renderPlatformOn: html.
> 	html div		script: ((self renderObjectsOn: html) timeout: 1 second).
> renderObjectsOn: html	| js | js := OrderedCollection new.		self class objects do: [:o |				js add: ((html jQuery: o cssSelector) html: o).			].
> 	^js javascriptItemsConcatenated.
>
> ... and the first query never selects an id? Oddly enough, if I add a meaningless item first:
> renderObjectsRevisedOn: html	| js | js := OrderedCollection with: (html jQuery: 'blah').		self class objects do: [:o |				js add: ((html jQuery: o cssSelector) html: o).			].	^js javascriptItemsConcatenated.
> It works just fine?
> RS 		 	   		
>

-- 
Lukas Renggli
www.lukas-renggli.ch


More information about the seaside mailing list