Anonymous Component

"J.F. Rick" <[email protected]>
Newsgroups gmane.comp.lang.smalltalk.squeak.seaside
Message-ID <CAM_dVCxme=f8CZnDH-4LUSgijxUmyb12NrgnzAZugeULiR3W8w@mail.gmail.com>
I'm using AJAX a decent amount with my Seaside application. One common
thing is to replace an IDed element with a component using something like:
    s << (s jQuery: #event) replaceWith: self.
inside a "html jQuery ajax script: [ :s | ]" block.

Is there a way to do this replacement without using a component that
implements the renderContentOn: message? For instance, what could I just do
to replace the #event component with this HTML: '<b>Success</b>'? I'm
hoping there's something I can do along the lines of:
    s << (s jQuery: #event) replaceWith: [ :html |
        html html: '<b>'.
        html text: (self isSuccess
            ifTrue: [ 'Success' ]
            ifFalse: [ 'Failed' ]).
        html html: '</b>' ].

Thanks,

Jeff

_______________________________________________
seaside mailing list
[email protected]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.