Re: [Zope] how to do this?

2007-03-15 Thread Andreas Jung
--On 15. März 2007 11:19:17 +0100 javi lopez <[EMAIL PROTECTED]> wrote: Hello everyone and thaks for your help: I have this things: Zdatabase Conection zsql method Controller page template(form) Controller python script(call zsql method) controller validator page template it´s a form, it sto

[Zope] how to do this?

2007-03-15 Thread javi lopez
Hello everyone and thaks for your help: I have this things: Zdatabase Conection zsql method Controller page template(form) Controller python script(call zsql method) controller validator page template it´s a form, it stores email and comments in database and it works. I need put all this inside

Re: [Zope] How to do this trick..

2006-03-28 Thread Chris Withers
Hi Jason, I see a few people have had a stab at this, but I have a feeling I know what you really meant ;-) Jason C. Leach wrote: I'm wondering how I can do this little trick (sp_info is a globaly devide var, it's a dictionary obj): So based on my the value of 'gro

Re: [Zope] How to do this trick..

2006-03-27 Thread David H
Jason C. Leach wrote: Hi, I'm wondering how I can do this little trick (sp_info is a globaly devide var, it's a dictionary obj): tal:attributes="onmouseover string:doTooltip(event, '${sp_info/${group}/common_name}')" onmouseout="hideTi

Re: [Zope] How to do this trick..

2006-03-27 Thread J Cameron Cooper
Jason C. Leach wrote: I'm wondering how I can do this little trick (sp_info is a globaly devide var, it's a dictionary obj): tal:attributes="onmouseover string:doTooltip(event, '${sp_info/${group}/common_name}')" onmouseout="hideTip()">

Re: [Zope] How to do this trick..

2006-03-27 Thread Ross Patterson
The tags are to make sure the order of TAL operations works properly with the tal:define being done *after* the tal:repeat. Hope this helps. Ross ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross p

[Zope] How to do this trick..

2006-03-27 Thread Jason C. Leach
Hi,I'm wondering how I can do this little trick (sp_info is a globaly devide var, it's a dictionary obj):        tal:content="group"     tal:attributes="onmouseover string:doTooltip(event, '${sp_info/${group}/common_name}')"     >