Re: [web2py] Using Ajax to display detail from a list

2010-04-01 Thread Thadeus Burgess
I usually do something similar. Even to the extreme of my have an extra column. So My id usually looks like id="__" And in my controllers I parse this as tablename, record_id, column = request.vars.id.split('_') -Thadeus On Thu, Apr 1, 2010 at 2:24 PM, Keith Edmunds wrote: > What I wan

[web2py] Using Ajax to display detail from a list

2010-04-01 Thread Keith Edmunds
What I want to do: have a list of items displayed; when one is clicked, more detail is shown (via an Ajax call) in a defined "detail area". Problem: the web2py ajax call takes three parameters: a controller action, one or more field ids, and a target DIV. My controller action needs to identify whi