Re: [web2py] Re: component refresh with jQuery UI tab plugin

2011-07-13 Thread Richard Vézina
A lot of thing happen since that time... Here the solutions I found with help of Anthony : if form.accepts(request.vars, session): session.flash = T('form accepted') """if table == 'ref_fnaregistry': next = URL('ref', 'creation', args=1, extension=False, host=True)

[web2py] Re: component refresh with jQuery UI tab plugin

2011-07-11 Thread Cliff
Hello Richard, Your post and Massimo's reply helped me understand better how this is supposed to work. So maybe I can return the favor a little bit. I understand from your posts that you have a field on tab_1 and you would like to see the contents of that field included in a dropdown on tab_2.

Re: [web2py] Re: component refresh with jQuery UI tab plugin

2011-06-06 Thread Richard Vézina
Hello Massimo, Was it available in 1.94.6?? I try all sort of things and can't makes it work... No refresh. Richard On Fri, Jun 3, 2011 at 10:02 AM, Massimo Di Pierro < massimo.dipie...@gmail.com> wrote: > Give a name to your components > > {{=LOAD(...,target='one')}} > {{=LOAD(...,target='two

[web2py] Re: component refresh with jQuery UI tab plugin

2011-06-03 Thread Massimo Di Pierro
Give a name to your components {{=LOAD(...,target='one')}} {{=LOAD(...,target='two')}} {{=LOAD(...,target='three')}} now any action can trigger a component reload response.js="web2py_component('action','target')" where action is the URL of the component and 'target' is 'one', 'two', 'three'', e