[web2py] Re: crud.search() example

2011-07-29 Thread Anthony
On Friday, July 29, 2011 12:28:45 PM UTC-4, Web2Py Freak wrote: > > its working now , thank you but how can i search just by title in > db.blogposts and get the output by viewing the blog with that > title ?? > am viewing the blogs in a {{for blog in .. Note sure what you mean. Whe

[web2py] Re: crud.search() example

2011-07-29 Thread Web2Py Freak
its working now , thank you but how can i search just by title in db.blogposts and get the output by viewing the blog with that title ?? am viewing the blogs in a {{for blog in ..

[web2py] Re: crud.search() example

2011-07-29 Thread Anthony
On Friday, July 29, 2011 11:44:06 AM UTC-4, Web2Py Freak wrote: > > so what to do now ?? Does this: {{form,table=crud.search(db.blogposts)}} {{=form}} {{=table}} not work for you? What are you trying to do? What problem are you having? Anthony

[web2py] Re: crud.search() example

2011-07-29 Thread Web2Py Freak
so what to do now ??

Re: [web2py] Re: crud.search() example

2011-07-29 Thread Bruno Rocha
Crud.search returns a tuple with two objects. http://zerp.ly/rochacbruno Em 29/07/2011 08:21, "Web2Py Freak" escreveu: > i tryed {{=crud.search(db.blogposts)}} > and it gives me this "(, [])" > in the page !

[web2py] Re: crud.search() example

2011-07-29 Thread Web2Py Freak
i tryed {{=crud.search(db.blogposts)}} and it gives me this "(, [])" in the page !

[web2py] Re: crud.search() example

2011-07-29 Thread Massimo Di Pierro
{{form,table=curd.search(db.table)}} {{=form}} {{=table}} On Jul 29, 4:18 am, Web2Py Freak wrote: > hey guys , > > anyone can give me an example on using the crud.search  ???!