> html textInput
> id: (inputId := html nextId);
> exampleText: 'testo iniziale';
> callback: [ :value | self field: value ];
>
> onEnter: ( html updater id: 'idToUpdate' ;
> callback:[ :h| self queryMethodBasedOn_Field: h ]).
>
> html div id:'idToUpdate' ; with:[ self queryMethodBasedOn_Field: html].
You need to trigger the callback of the textInput. So your updater
should look like:
html updater
id: 'idToUpdate';
triggerFormElement: inputId;
callback: ...
Scriptaculous gives you a lot of freedom, but you have to take care of
a few more things to get that freedom ...
Lukas
--
Lukas Renggli
http://www.lukas-renggli.ch_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside