[Seaside] jQuery component rendering by interval

Robert Sirois watchlala at hotmail.com
Thu Nov 15 06:35:17 UTC 2012


I'm with Joachim. Try something like this:
renderContentOn: html
	html script: (		(html jQuery ajax script: [:s | 			s add: ((s jQuery: 'body') load html: [:r | r render: self content ])]		) interval: 5 seconds)
where content is a renderable (ie. a WAComponent ).
RS
Date: Thu, 15 Nov 2012 05:31:32 +0100
Subject: Re: [Seaside] jQuery component rendering by interval
From: jtuchel at objektfabrik.de
To: bobn at rogers.com; seaside at lists.squeakfoundation.org

hi bob,

I guess you should add to the script a jquery expression that causes some component to be replaced with the contents of the rendering. So either this part is missing in your snippet or it`s really missing. The ajax call is made to re server, but you dont use the results.

Look at senders of load or replace....

Joachim

bobn at rogers.com schrieb:

Hello,I am not able to get what would seem to be simple jQuery refresh working. The code is supposed to render a component every five seconds. I can see the render code being triggered, but the browser display is not being updated.
My code looks something like this... 
	html script: (		(html jQuery ajax script: [:s | 			s << (s jQuery html: [:r | r render: self selectedComponent])]		) interval: 5 seconds)
...I do a similar thing in another application using Scriptaculous, which works fine... 
	html div 		script: (			html scriptaculous updater				interval: 5 seconds;				on: #renderSelectedComponentOn: 				of: self);		with: [ self renderSelectedComponentOn: html ]
I've been searching through the archives, but all the hits I find make me think the jQuery code is OK.I imagine I'm missing something obvious... so thanks for any
 help.
Bob Nemec





_______________________________________________
seaside mailing list
seaside at lists.squeakfoundation.org
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside 		 	   		  
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.squeakfoundation.org/pipermail/seaside/attachments/20121114/b01faf2f/attachment.htm


More information about the seaside mailing list