Re: [web2py] Re: Keep values with a list:string field?

2016-07-21 Thread Ben Lawrence
How did you work around this issue? I need the list-string keepvalues for an ajax call... On Friday, August 14, 2015 at 7:34:10 AM UTC-7, Ian W. Scott wrote: > > Thanks Richard. I will if I have time. I find these small fixes have a way > of becoming bigger projects than I expect :) > > Ian > > O

[web2py] Re: tootip in menu

2016-07-21 Thread 'Annet' via web2py-users
Hi Niphold, Thanks for your reply and explanation, problem solved. Kind regards, Annet -- 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 th

[web2py] Re: Best way to send data from web2py client to web2py server

2016-07-21 Thread Aydin
Thanks, yes, I know of the forms, I was just wondering if there are other services or methods that I may not know. On Wednesday, July 20, 2016 at 9:07:16 AM UTC-4, Marlysson Silva wrote: > > Using forms? > And web2py get them using request.vars.* > > Em quarta-feira, 20 de julho de 2016 09:59:18

[web2py] Re: Best way to send data from web2py client to web2py server

2016-07-21 Thread Aydin
Centralized DB, because to process the data on the server that is available by a domain. The data are integers. On Wednesday, July 20, 2016 at 11:22:38 PM UTC-4, Michael Messmer wrote: > > Are you talking about High Availability? Load Balancer and Centralized DB? > Why and what kind of data

[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 whe

[web2py] Re: having issues with dates and DAL

2016-07-21 Thread web2pyuser777
Thank you all very much! -- 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 message because you are subscribed to the Google Groups "web2p

[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') Contr

[web2py] Re: Best way to send data from web2py client to web2py server

2016-07-21 Thread Michael Messmer
In my infrastructure I connect to a Oracle DB hosted somewhere else in the datacenter. I just point the URI in appconfig to the schema location. I have two different major web services running off of Centralized Oracle DB and numerous smaller api/webapp servers that dont need HA use SQLite inste

[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: > db

[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 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

Re: [web2py] Re: Remove _extra from as_list()

2016-07-21 Thread Anthony
Please show your code. On Wednesday, July 20, 2016 at 3:55:19 PM UTC-4, Eric wrote: > > Hi Anthony, > > I'm not including them. I'm only using with_alias() and the select in > combination with as_list(). I would not expect to get the _extra as a > little bonus when you use with_alias()... > > Th

[web2py] Re: Best way to send data from web2py client to web2py server

2016-07-21 Thread Anthony
On Thursday, July 21, 2016 at 8:22:21 AM UTC-4, Aydin wrote: > > Thanks, yes, I know of the forms, I was just wondering if there are other > services or methods that I may not know. > I think you need to explain more specifically what you are trying to do. Anthony -- Resources: - http://web2py

[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 look

[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 b

[web2py] Re: Best way to send data from web2py client to web2py server

2016-07-21 Thread Aydin
Sure, Let's say I have a machine connected running web2py, this will be like a client because the app will be sending data out. I use scheduler to routinely send the data (every 2 min). I want this app send data to a web2py server (has domain like www.example.com). let's say I have two of these

[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 application

Re: [web2py] Re: Is there a way to find ID of inserted row if there is trigger after insert?

2016-07-21 Thread Richard Vézina
Did we open a ticket and solve this one... I think I have this issue... I try to create an archive table and I fall on this error dal/pydal/adapters/postgres.py", line 181, in lastrowid return int(self.cursor.fetchone()[0]) I can't figure out why so far... Richard On Wed, Aug 6, 2014 at 2

[web2py] Re: Best way to send data from web2py client to web2py server

2016-07-21 Thread Anthony
OK, so when you say "web2py client", you don't mean a browser but a server-side web2py application that happens to be communicating with another server-side web2py application (on a different server). In that case, I suppose the obvious approach is to use Python to make HTTP requests from your

[web2py] Re: web2py session disable

2016-07-21 Thread luis . valladares
Thanks for your help but didnt work, im havin a ticket using (), the ticket say something about key_session_cookie not existing in _thread().local Anyone has disabled python sessions succesfully and can guide me how to do it? El jueves, 21 de julio de 2016, 2:57:00 (UTC-4), T.R.Rajkumar escri

Re: [web2py] Re: How to render a csv file without using template

2016-07-21 Thread Ben Lawrence
Thanks MCM this method still works nearly 3 years later! A question though: when the csv file is downloaded it has the name 'unknown' with no .csv. Do you know how I can change that filename to something like 'data.csv' ? thanks in advance, Ben On Friday, November 1, 2013 at 3:36:00 PM UTC-7, mcm

Re: [web2py] Re: Remove _extra from as_list()

2016-07-21 Thread Eric Christiaanse
Hi Anthony, My code is the following: # -*- coding: utf-8 -*- from gluon.serializers import json @auth.requires(lambda: AuthHelper.valid_token(), requires_login=False) @request.restful() def search(): session.forget() def post(*args, **vars): response.headers["Content-Type"] =