Re: [web2py] Re: labels in crud.select

2010-10-18 Thread Richard Vézina
Ok! It works, thanks Alex I will have much more work since fields=['field1','field etc.'] broke the behavior of the headers dict... So I can't hide field I don't want to show... I probably must specify a query that will only include the column I want... Richard On Fri, Oct 15, 2010 at 7:29 PM,

Re: [web2py] Re: labels in crud.select

2010-10-15 Thread Richard Vézina
I try in many ways with no success... I read somewhere that headers='fieldName:capitalize' was the only parameter for headers accepted... What I did : selected=crud.select(table,field_labels={'field1':'abc'},headers='fieldname:capitalize') selected=crud.select(table,field_labels={'field1':'abc'

Re: [web2py] Re: labels in crud.select

2010-10-15 Thread Richard Vézina
Hello, It's not working... I am really confuse... I try with 1.83.2 and 1.87.3. I try with fields=['myfield1','myfield2'] and without it always with field_labels and also with and without headers='fieldname:capitalize'... Is it a issue? Richard On Thu, Oct 14, 2010 at 8:16 PM, Alex wrote: >

Re: [web2py] Re: labels in crud.select

2010-10-14 Thread Richard Vézina
Thanks Alex, It will help I think, I try tomorrow. Richard On Thu, Oct 14, 2010 at 8:16 PM, Alex wrote: > Are you trying to display a more user friendly column name rather than > the DB column name? > > If so, you can do this already. The crud.select() has a method called > "field_labels", wh