http://tinybits.blogspot.com/2009/10/missing-javascript.html

Started working on AJAX extensions to the builtin Tapestry.js, contributions
from others would be great!

The function for submitting zone forms is quite simple, but also quite
useful I think.

The function for triggering a zone link is the most interesting one. It is
mostly a copy of Tapestry.js code, but modified to enable triggering links
without knowing the event url connected to the link. It is based on Tapestry
putting the actual link url in the href. As of now (5.1.0.5), it does.

My wish for the future is for this function to be built in, so we can call
"Tapestry.triggerZoneLink(linkElement)". And in Tapestry.js, linkZone
function, around line 800, I would like it to look like this:

element.observe("click", function(event)
        {
            Event.stop(event);

            triggerZoneLink(element, url)
        });


I would like to hear if anyone thinks this is a bad idea. Because if it is
not, it is really simple to just put it right into the core.

Regards

Inge


On Thu, May 21, 2009 at 1:22 AM, Inge Solvoll <inge.tapes...@gmail.com>wrote:

> New blog entry, this time I've tried to improve/simplify a Chenillekit
> mixin. Check out my OnEvent mixin here:
>
> http://tinybits.blogspot.com/2009/05/simple-onevent-mixin.html
>
>
> On Fri, May 15, 2009 at 11:20 AM, Inge Solvoll <inge.tapes...@gmail.com>wrote:
>
>>
>> http://tinybits.blogspot.com/2009/05/update-zone-on-any-client-side-event.html
>>
>> New post with code I believe I've posted here before. This mixin enables
>> you to trigger a zone update from any client side event, with the value of
>> the triggering element as event context.
>>
>> There are a couple of things contained in this mixin, that exemplifies
>> things that I think should be better supported by the framework:
>> - Javascript encoding function (copied from Equanda code)
>> - Having to manually wire up the event link context before performing the
>> request.
>> - To find a zone object and trigger an update on it is a bit
>> difficult/non-intuitive. Several JIRA issues have been raised about this, it
>> might be fixed in 5.1?
>>
>> Regards
>> Inge
>>
>>
>> On Wed, Apr 15, 2009 at 2:50 PM, Inge Solvoll <inge.tapes...@gmail.com>wrote:
>>
>>> http://tinybits.blogspot.com/
>>>
>>> New post on my blog with another simple mixin that has been posted on the
>>> list before.
>>>
>>> Also worked a bit on the layout. Found that the best way to publish
>>> source code on blogger.com was to use Windows Live Writer with source
>>> code formatter plugin:
>>> http://skotl.blogspot.com/2009/02/posting-code-snipped-on-blogspotcom.html
>>> .
>>>
>>>
>>>
>>> On Fri, Apr 3, 2009 at 6:55 PM, Andreas Andreou <andy...@di.uoa.gr>wrote:
>>>
>>>> no - it's the other way around :)
>>>>
>>>> the feeds we keep in our wiki entry - we can also add them to
>>>> the ohloh page for the Tapestry project ( http://www.ohloh.net/p/4017 )
>>>>
>>>>
>>>> On Fri, Apr 3, 2009 at 7:31 PM, Francois Armand <farm...@linagora.com>
>>>> wrote:
>>>> > Andreas Andreou wrote:
>>>> >>
>>>> >> You can also edit the rss feeds for Tapestry @ ohloh
>>>> >> http://www.ohloh.net/p/4017
>>>> >>
>>>> >
>>>> > I added the reference about it on the wiki page. But I can't see how
>>>> to
>>>> > suscribe in my rssreader on Ohloh Tapestry 5 feed... Do you know how
>>>> to do
>>>> > (what is the url for Ohloh T5 feed) ?
>>>> >
>>>> > --
>>>> > Francois Armand
>>>> > Etudes & Développements J2EE
>>>> > Groupe Linagora - http://www.linagora.com
>>>> > Tél.: +33 (0)1 58 18 68 28
>>>> > -----------
>>>> > http://fanf42.blogspot.com
>>>> > InterLDAP - http://interldap.org FederID - http://www.federid.org/
>>>> > Open Source identities management and federation
>>>> >
>>>> >
>>>> > ---------------------------------------------------------------------
>>>> > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
>>>> > For additional commands, e-mail: users-h...@tapestry.apache.org
>>>> >
>>>> >
>>>>
>>>>
>>>>
>>>> --
>>>> Andreas Andreou - andy...@apache.org - http://blog.andyhot.gr
>>>> Tapestry / Tacos developer
>>>> Open Source / JEE Consulting
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
>>>> For additional commands, e-mail: users-h...@tapestry.apache.org
>>>>
>>>>
>>>
>>
>

Reply via email to