[web2py] Re: web2py_component with helper A(cid=request.cid) and LOAD()

2013-06-08 Thread Niphlod
it works if you remove the mask call. given that you don't have the mask plugin in the app, it goes into exception and all code after that doesn't get executed. On Friday, June 7, 2013 10:33:02 PM UTC+2, Charles Levesque wrote: It's working on your side? I'll be damned =P. I'll download

[web2py] Re: web2py_component with helper A(cid=request.cid) and LOAD()

2013-06-07 Thread Niphlod
as soon as the profile page is accessed, TypeError: $(...).mask is not a function http://127.0.0.1:8000/phone/static/js/jquery.js/eval/seq/7 Line 2 remove the line calling the mask plugin that you don't have, it works all fine (seems to, at least)! On Friday, June 7, 2013 4:46:51 PM UTC+2,

[web2py] Re: web2py_component with helper A(cid=request.cid) and LOAD()

2013-06-07 Thread Charles Levesque
It's working on your side? I'll be damned =P. I'll download another web2py and reinstall my app on it, hopping that it'll work. It must be when I updated web2py before playing with components. Thanks for your time and support. Much appreciated. -- --- You received this message because you

[web2py] Re: web2py_component with helper A(cid=request.cid) and LOAD()

2013-06-06 Thread Niphlod
pack a MINIMAL app to show what you mean. This is working perfectly here. def index(): a = LOAD('default', 'loaded.load') return locals() def loaded(): a = A('click to reload', _href=URL('loaded.load'), cid=request.cid) b = request.now return locals() go to the index page,