[web2py] Re: Field type list:string in SQLFORM.grid problem new entries.

2016-07-23 Thread Dave S
On Friday, July 22, 2016 at 4:45:58 AM UTC-7, Alex Santana wrote: > > Thanks Dave, > > I was doing exactly this! > I spent some time prototyping a fabfile to use when a new release comes out, so I've poked around some of these issues. I did forget to mention that if you have some custom

[web2py] Re: Field type list:string in SQLFORM.grid problem new entries.

2016-07-22 Thread Alex Santana
Thanks Dave, I was doing exactly this! On Thursday, July 21, 2016 at 7:50:24 PM UTC+2, Dave S wrote: > > > On Thursday, July 21, 2016 at 9:02:57 AM UTC-7, Alex Santana wrote: > > >> Now I need to realize how to migrate my applications to the git version. >> > > It's mostly a matter of copying

[web2py] Re: Field type list:string in SQLFORM.grid problem new entries.

2016-07-21 Thread Dave S
On Thursday, July 21, 2016 at 9:02:57 AM UTC-7, Alex Santana wrote: > Now I need to realize how to migrate my applications to the git version. > It's mostly a matter of copying the controllers, models, and modules you have. If you have language files, copy those. If you have an

[web2py] Re: Field type list:string in SQLFORM.grid problem new entries.

2016-07-21 Thread Alex Santana
Updating: I created to completely new applications. The problem is with the applications created with the Web2py from debian repository. Version 2.12.3-stable+timestamp.2015.08.19.00.18.03 Creating an application with the Web2py from Git Version 2.14.6-stable+timestamp.2016.05.09.19.18.48 The

[web2py] Re: Field type list:string in SQLFORM.grid problem new entries.

2016-07-21 Thread Niphlod
imho you're missing web2py's styles or js scripts. does the same model suffer the same issue with a FRESH welcome app coming from the latest stable ? if yes, pack it and attach here, so we can inspect what's going on. On Thursday, July 21, 2016 at 4:58:30 PM UTC+2, Alex Santana wrote: > > I

[web2py] Re: Field type list:string in SQLFORM.grid problem new entries.

2016-07-21 Thread Alex Santana
I looked at the source code. The "+" button supposed to be next to the input field. Even there is a TD tag for it, but it is empty. Test: On Thursday, July 21, 2016 at 4:41:13 PM UTC+2, Niphlod wrote: > > is it really a big issue to have to press the '+' button to make another > input

[web2py] Re: Field type list:string in SQLFORM.grid problem new entries.

2016-07-21 Thread Alex Santana
Okay, but where is the "+" button in this image?

[web2py] Re: Field type list:string in SQLFORM.grid problem new entries.

2016-07-21 Thread Niphlod
is it really a big issue to have to press the '+' button to make another input appear On Thursday, July 21, 2016 at 4:07:37 PM UTC+2, Alex Santana wrote: > > I updated the source to the version 2.14.6, the problem persists! > > I created a new application to test this isolated: > Model: >

[web2py] Re: Field type list:string in SQLFORM.grid problem new entries.

2016-07-21 Thread Alex Santana
I updated the source to the version 2.14.6, the problem persists! I created a new application to test this isolated: Model: db.define_table('testes', Field('name',length=255, unique=True,label=T("Name")), Field('test','list:string',label=T("Test")), format = '%(name)s')

[web2py] Re: Field type list:string in SQLFORM.grid problem new entries.

2016-07-21 Thread Alex Santana
Updating: I the development environment, I upgraded the web2py 1.99.7 to the 2.12.3. Now, the issue is in both. (development and production). I will upgrade to the latest version 2.14.6. On Thursday, July 14, 2016 at 4:17:25 PM UTC+2, Alex Santana wrote: > > Helo, > > I created a basic table