I had a similar problem. The secret is that the with: parameter must be the last in the chain. Once the with: parameter is found, no further methods are processed.<div><br></div><div>This is documented in some book or article -- I don&#39;t remember where I saw it.</div>
<div><br></div><div>TF<br><br><div class="gmail_quote">On Tue, Oct 26, 2010 at 7:05 PM, Jeff Gray <span dir="ltr">&lt;<a href="mailto:jeff@rogerthedog.com">jeff@rogerthedog.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<br>
Hi all. Proud day - my first post :-)<br>
<br>
In my renderContentOn: method I have the following line:<br>
<br>
html tableData with: (account balance printShowingDecimalPlaces: 2); align:<br>
&#39;right&#39;<br>
<br>
I get the data out ok but it doesn&#39;t add the align attribute to the &lt;td&gt;<br>
tag.<br>
If I switch around the order of the messages then the alignment works:<br>
<br>
html tableData align: &#39;right&#39;; with: (account balance<br>
printShowingDecimalPlaces: 2)<br>
<br>
What&#39;s going on there?<br>
<font color="#888888">--<br>
View this message in context: <a href="http://forum.world.st/html-brush-chaining-messages-tp3014769p3014769.html" target="_blank">http://forum.world.st/html-brush-chaining-messages-tp3014769p3014769.html</a><br>
Sent from the Seaside General mailing list archive at Nabble.com.<br>
_______________________________________________<br>
seaside mailing list<br>
<a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
</font></blockquote></div><br></div>