<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>Okay, here:&nbsp;<a href="http://bit.ly/ceNFyw">Multiligual web applications design ala Smalltalk</a></div><div>&nbsp;</div><div><a href="http://twitter.com/sebastianconcpt">sebastian</a></div><div><br></div><div>o/</div><div><br></div><br><div><div>On Nov 15, 2010, at 2:17 PM, Pablo Gancharov wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Yes me too!<br><br><div class="gmail_quote">2010/11/15  <span dir="ltr">&lt;<a href="mailto:seaside-request@lists.squeakfoundation.org">seaside-request@lists.squeakfoundation.org</a>&gt;</span><br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

Send seaside mailing list submissions to<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
or, via email, send a message with subject or body 'help' to<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:seaside-request@lists.squeakfoundation.org">seaside-request@lists.squeakfoundation.org</a><br>
<br>
You can reach the person managing the list at<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:seaside-owner@lists.squeakfoundation.org">seaside-owner@lists.squeakfoundation.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of seaside digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
 &nbsp; 1. Re: multilanguage (AA)<br>
 &nbsp; 2. Re: making a read-only checkbox (Gilles Schtickzelle)<br>
 &nbsp; 3. Re: making a read-only checkbox (Diogenes Moreira)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Mon, 15 Nov 2010 12:04:21 +0000<br>
From: AA &lt;<a href="mailto:aa@serendip.demon.co.uk">aa@serendip.demon.co.uk</a>&gt;<br>
Subject: Re: [Seaside] multilanguage<br>
To: <a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a><br>
Message-ID: &lt;<a href="mailto:20101115120421.d4580e44.aa@serendip.demon.co.uk">20101115120421.d4580e44.aa@serendip.demon.co.uk</a>&gt;<br>
Content-Type: text/plain; charset=US-ASCII<br>
<br>
Yes, please! I'd love to hear details about how you did this...<br>
<br>
Amir<br>
<br>
<br>
On Sat, 13 Nov 2010 14:34:25 -0200<br>
Sebastian Sastre &lt;<a href="mailto:sebastian@flowingconcept.com">sebastian@flowingconcept.com</a>&gt; wrote:<br>
<br>
&gt; Hi Carlos,<br>
&gt;<br>
&gt; our apps are trilingual and we basically implemented #translated in String to delegate what to do to the session. Then the session decides the destination language and delegates the translation to the polyglot helper we've made.<br>


&gt;<br>
&gt; Once you have that, all you need is a little webapp that allows you to edit the phrases of each translation.<br>
&gt;<br>
&gt; I can promise you that this is not big deal, maybe I should blog details about it<br>
&gt;<br>
&gt; sebastian<br>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Mon, 15 Nov 2010 12:17:07 +0100<br>
From: Gilles Schtickzelle &lt;<a href="mailto:gschtick@gmail.com">gschtick@gmail.com</a>&gt;<br>
Subject: Re: [Seaside] making a read-only checkbox<br>
To: Seaside - general discussion &lt;<a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a>&gt;<br>
Message-ID:<br>
 &nbsp; &nbsp; &nbsp; &nbsp;&lt;AANLkTi=<a href="mailto:T_Vy-y_h10EsATNUkXEK72VvDevLRZvzsFnqm@mail.gmail.com">T_Vy-y_h10EsATNUkXEK72VvDevLRZvzsFnqm@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset="iso-8859-1"<br>
<br>
Ah yes thank you!<br>
<br>
I had tried to add a 'disabled: true' but apparently I put it at the wrong<br>
place and it wasn't working.<br>
Now it's all good thanks.<br>
<br>
On Mon, Nov 15, 2010 at 11:51 AM, Nick Ager &lt;<a href="mailto:nick.ager@gmail.com">nick.ager@gmail.com</a>&gt; wrote:<br>
<br>
&gt; Hi Giles,<br>
&gt;<br>
&gt; I have a form with a bunch of checkboxes. I want some of them to be<br>
&gt;&gt; disabled depending on wether some other are checked or not.<br>
&gt;&gt; I just can't figure out how to make a read-only checkbox (so that it would<br>
&gt;&gt; still show but would be greyed out).<br>
&gt;<br>
&gt;<br>
&gt; Try:<br>
&gt;<br>
&gt; html checkbox<br>
&gt; &nbsp;value: true;<br>
&gt; disabled: true;<br>
&gt; with: 'a disabled checkbox'<br>
&gt;<br>
&gt;<br>
&gt; #disabled: works for all form elements.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;&gt; Is there such a thing in seaside (optimally with jquery so they can be<br>
&gt;&gt; updated on the fly when the user check/uncheck a box).<br>
&gt;&gt;<br>
&gt;<br>
&gt; html checkbox<br>
&gt; &nbsp;id: #myDisabledCheckbox;<br>
&gt; value: true;<br>
&gt; disabled: true;<br>
&gt; &nbsp;with: 'a disabled checkbox'.<br>
&gt; &nbsp;html checkbox<br>
&gt; &nbsp;value: true;<br>
&gt; onClick: ((html jQuery: #myDisabledCheckbox) attributeAt: 'checked' put:<br>
&gt; (html jQuery this attributeAt: 'checked'));<br>
&gt; &nbsp;with: 'mirror the other checkbox'<br>
&gt;<br>
&gt;<br>
&gt; To put this example together I Googled 'jQuery checkbox' - found<br>
&gt; <a href="http://www.electrictoolbox.com/check-uncheck-checkbox-jquery/" target="_blank">http://www.electrictoolbox.com/check-uncheck-checkbox-jquery/</a> then<br>
&gt; translated the result into Seaside jQuery.<br>
&gt;<br>
&gt; Hope this helps<br>
&gt;<br>
&gt; Nick<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; seaside mailing list<br>
&gt; <a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a><br>
&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
&gt;<br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://lists.squeakfoundation.org/pipermail/seaside/attachments/20101115/68ef2694/attachment.html" target="_blank">http://lists.squeakfoundation.org/pipermail/seaside/attachments/20101115/68ef2694/attachment.html</a><br>


<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Mon, 15 Nov 2010 08:53:12 -0300<br>
From: Diogenes Moreira &lt;<a href="mailto:diogenes.moreira@gmail.com">diogenes.moreira@gmail.com</a>&gt;<br>
Subject: Re: [Seaside] making a read-only checkbox<br>
To: Seaside - general discussion &lt;<a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a>&gt;<br>
Message-ID:<br>
 &nbsp; &nbsp; &nbsp; &nbsp;&lt;AANLkTi=3aFRs-3vDi_m2v119SV527ZU5R++=<a href="mailto:L49EFGzn@mail.gmail.com">L49EFGzn@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1<br>
<br>
Here the net, not only the fish...<br>
The next when you need knows a property in a seaside object, take a<br>
look to WAHtmlCanvas and WARenderCanvas, in that objects methods<br>
seaside builds the htmls components. In your case, in your case the<br>
object whon represent to checkbox is WACheckboxTag.<br>
Otherwise, if the standars object don't have the properties/messages<br>
(that is very extrange, but may be happend) that you need, you can use<br>
message attributesAt:put: to set an other properties<br>
<br>
Best Regards<br>
<br>
2010/11/15, Gilles Schtickzelle &lt;<a href="mailto:gschtick@gmail.com">gschtick@gmail.com</a>&gt;:<br>
&gt; Ah yes thank you!<br>
&gt;<br>
&gt; I had tried to add a 'disabled: true' but apparently I put it at the wrong<br>
&gt; place and it wasn't working.<br>
&gt; Now it's all good thanks.<br>
&gt;<br>
&gt; On Mon, Nov 15, 2010 at 11:51 AM, Nick Ager &lt;<a href="mailto:nick.ager@gmail.com">nick.ager@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; Hi Giles,<br>
&gt;&gt;<br>
&gt;&gt; I have a form with a bunch of checkboxes. I want some of them to be<br>
&gt;&gt;&gt; disabled depending on wether some other are checked or not.<br>
&gt;&gt;&gt; I just can't figure out how to make a read-only checkbox (so that it<br>
&gt;&gt;&gt; would<br>
&gt;&gt;&gt; still show but would be greyed out).<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Try:<br>
&gt;&gt;<br>
&gt;&gt; html checkbox<br>
&gt;&gt; &nbsp;value: true;<br>
&gt;&gt; disabled: true;<br>
&gt;&gt; with: 'a disabled checkbox'<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; #disabled: works for all form elements.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt; Is there such a thing in seaside (optimally with jquery so they can be<br>
&gt;&gt;&gt; updated on the fly when the user check/uncheck a box).<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; html checkbox<br>
&gt;&gt; &nbsp;id: #myDisabledCheckbox;<br>
&gt;&gt; value: true;<br>
&gt;&gt; disabled: true;<br>
&gt;&gt; &nbsp;with: 'a disabled checkbox'.<br>
&gt;&gt; &nbsp;html checkbox<br>
&gt;&gt; &nbsp;value: true;<br>
&gt;&gt; onClick: ((html jQuery: #myDisabledCheckbox) attributeAt: 'checked' put:<br>
&gt;&gt; (html jQuery this attributeAt: 'checked'));<br>
&gt;&gt; &nbsp;with: 'mirror the other checkbox'<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; To put this example together I Googled 'jQuery checkbox' - found<br>
&gt;&gt; <a href="http://www.electrictoolbox.com/check-uncheck-checkbox-jquery/" target="_blank">http://www.electrictoolbox.com/check-uncheck-checkbox-jquery/</a> then<br>
&gt;&gt; translated the result into Seaside jQuery.<br>
&gt;&gt;<br>
&gt;&gt; Hope this helps<br>
&gt;&gt;<br>
&gt;&gt; Nick<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; seaside mailing list<br>
&gt;&gt; <a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a><br>
&gt;&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
<br>
--<br>
Enviado desde mi dispositivo móvil<br>
<br>
<br>
------------------------------<br>
<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>
<br>
<br>
End of seaside Digest, Vol 95, Issue 30<br>
***************************************<br>
</blockquote></div><br>
_______________________________________________<br>seaside mailing list<br><a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a><br>http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside<br></blockquote></div><br></body></html>