[web2py] Re: AJAX issue with '#' in URL

2010-09-21 Thread Martin.Mulone
I think to deal with your problems is what KMax says On Sep 21, 1:02 am, KMax wrote: > Did you check errors in admin page? >  Ajax errors not easy to catch due their hideness. >  Try FireBug or other simular tools (Google chrome & IE8 has own build- > in) > > On 13 сен, 10:40, weheh wrote: > > >

[web2py] Re: AJAX issue with '#' in URL

2010-09-20 Thread KMax
Did you check errors in admin page? Ajax errors not easy to catch due their hideness. Try FireBug or other simular tools (Google chrome & IE8 has own build- in) On 13 сен, 10:40, weheh wrote: > Sorry, I don't think I was very clear in my last message. I tried > Massimo's suggestion but did the

[web2py] Re: AJAX issue with '#' in URL

2010-09-12 Thread mdipierro
I guess I do not understand what you need to do. Can you explain it again. Sorry. On Sep 12, 10:40 pm, weheh wrote: > Sorry, I don't think I was very clear in my last message. I tried > Massimo's suggestion but did the AJAX call still fails. I don't > understand the new failure, yet, or whether i

[web2py] Re: AJAX issue with '#' in URL

2010-09-12 Thread weheh
Sorry, I don't think I was very clear in my last message. I tried Massimo's suggestion but did the AJAX call still fails. I don't understand the new failure, yet, or whether it is the same as the old failure. I am investigating.

[web2py] Re: AJAX issue with '#' in URL

2010-09-12 Thread weheh
I tried this but it doesn't seem to work. I only glanced at it, so I need to do a little more study. On Sep 10, 10:06 am, mdipierro wrote: > this > >           A(r.x.y, >             _href='#', >             _id='y-%d-%d'%(z_id,r.x.id), >             _onclick="ajax('update_y/%s/%s',['y-%d-%d'],':

[web2py] Re: AJAX issue with '#' in URL

2010-09-10 Thread mdipierro
this A(r.x.y, _href='#', _id='y-%d-%d'%(z_id,r.x.id), _onclick="ajax('update_y/%s/%s',['y-%d-%d'],':eval');"%\ (z_id,r.x.id,z_id,r.x.id), ), should be A(r.x.y, _href='#', _id='y-%d-%d'%(z_

[web2py] Re: AJAX issue with '#' in URL

2010-09-04 Thread weheh
DIV( A(r.x.y, _href='#', _id='y-%d-%d'%(z_id,r.x.id), _onclick="ajax('update_y/%s/%s',['y-%d-%d'],':eval');"%\ (z_id,r.x.id,z_id,r.x.id), ), _class='y', ), On Sep 4, 6:51 pm, mdipierro wrote:

[web2py] Re: AJAX issue with '#' in URL

2010-09-04 Thread mdipierro
what is the code that generates the url for the ajax callbask? On Sep 4, 4:45 pm, weheh wrote: > I have a controller that takes an argument, which is the id of a row > in mytable. If the arg is present, then the row is displayed at the > top of the page and all the rows are displayed at the botto