[web2py] Re: Grid export csv

2016-10-24 Thread Niphlod
never ever pull web2py AND pydal master's and merge (unless you really know what you're doing). When using "master", at most, use web2py's one, which has the correct pointers to pydal's specific commits. Any commit later than 15aug should work fine ^_^ On Friday, October 21, 2016 at 10:54:31 P

[web2py] Re: Grid export csv

2016-10-21 Thread Bartosz Baranowski
Niphlod, I am using latest web2py and pydal from master branches. Any idea where is the fix? Could you please direct me to the commit? W dniu środa, 3 sierpnia 2016 12:51:56 UTC-7 użytkownik Niphlod napisał: > > should be already fixed on master, anyway if you're in a hurry, set > entity_quorin

[web2py] Re: Grid export csv

2016-08-04 Thread Kostas M
As you said, it works again now, by setting: entity_quoting=False Thanks Niphlod! -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this mess

[web2py] Re: Grid export csv

2016-08-03 Thread Niphlod
should be already fixed on master, anyway if you're in a hurry, set entity_quoring=False on the DAL line to make it work again (long story short, DAL now quotes everything by default and not every cog in the wheel was expecting that) On Monday, August 1, 2016 at 1:51:54 PM UTC+2, Kostas M wrote

[web2py] Re: Grid export csv

2016-08-01 Thread Kostas M
I have the same problem with the CSV, HTML, TSV export buttons. The Ticket for the CSV is pasted below. The problem at least with the csv export button seems to be with the REGEX_TABLE_DOT_FIELD. Normally, this constant is defined in regex.py as: REGEX_TABLE_DOT_FIELD = re.compile('^(\w+)\.([^.

[web2py] Re: Grid export csv

2016-08-01 Thread Ryan Hood
DB.PY db.define_table('test', Field('name', 'string', length=50, notnull=True), Field('email', 'string', notnull=True), format="%(name)s") DEFAULT.PY query=(db.test.id>0) fields=[db.test.id,db.test.name,db.test.email] forms=SQLFOR

[web2py] Re: Grid export csv

2016-07-30 Thread Massimo Di Pierro
You press the button. Is this not working? What happens? What you model? What is your grid? On Friday, 29 July 2016 11:23:28 UTC-5, Ryan Hood wrote: > > How do you get the csv export to work in web2py grid? > > NOTE: Working with web2py version 2.14.6 and 2.14.5 > > Thank you, > -- Resources: