{Disarmed} [web2py] Re: Searching and sorting virtual field on grid

2017-02-24 Thread Carlos Cesar Caballero Díaz
Hi Anthony, thanks for your answer. We are using (besides web2py) the php yii2 framework. Yii2 has this functionality specifying custom functions for sorting and filtering of fields in grids (http://www.yiiframework.com/wiki/621/filter-sort-by-calculated-related-fields-in-gridview-yii-2-0/).

[web2py] Re: API changed ?

2017-02-24 Thread Anthony
Are you referring to this: http://web2py.readthedocs.io/en/latest/ On Friday, February 24, 2017 at 11:50:56 AM UTC-5, Olivier Choquet wrote: > > Hi everyone. > > My question might look a little bit weird but in the (very good) tutorial > videos of web2py a link to the API is shown. It goes to qui

[web2py] Re: Searching and sorting virtual field on grid

2017-02-24 Thread Anthony
On Friday, February 24, 2017 at 1:04:45 PM UTC-5, Carlos Cesar Caballero wrote: > > Hi, how can I make a virtual field searchable and sortable in the grid? > This cannot be done, as virtual fields are calculated after the records have been selected from the database. Anthony -- Resources: -

[web2py] Re: Homemade Task Queues and Web server simultaneously

2017-02-24 Thread Anthony
On Friday, February 24, 2017 at 11:50:56 AM UTC-5, klas.eq...@gmail.com wrote: > > Dear community, > > I am working on a school project, using web2py. I have a Python script, > that should be run in background, because it takes several minutes. > > First, I tried using Homemade Task Queues, becau

[web2py] Re: Task keeps in running indefinitely, regardless timeout

2017-02-24 Thread Lisandro
I'll mark this thread as "no action required" for a while. In the next weeks, I'll update web2py to last stable version and I'll keep monitoring this issue. El viernes, 24 de febrero de 2017, 9:48:42 (UTC-3), Lisandro escribió: > > Hi there! > I have several repetitive tasks configured in the s

[web2py] best way to put together components that interact between them

2017-02-24 Thread Bernardo Leon
Hi, I am trying to create a page that uses 3 components. I want each component to be reusable. The first component is a search box, based on the search box result I want to load the second component (a grid) with the first result as a parameter. When I click on a link in the second component gr

[web2py] Re: Homemade Task Queues and Web server simultaneously

2017-02-24 Thread Dave S
On Friday, February 24, 2017 at 11:51:58 AM UTC-8, Dave S wrote: > > On Friday, February 24, 2017 at 8:50:56 AM UTC-8, klas@gmail.com > wrote: >> >> Dear community, >> >> I am working on a school project, using web2py. I have a Python script, >> that should be run in background, because it

[web2py] Re: Running Homemade Task Queues and Webserver simultaneously

2017-02-24 Thread Dave S
On Friday, February 24, 2017 at 8:50:52 AM UTC-8, klas@gmail.com wrote: > > Dear community, > > I am working on a school project and my team is working with web2py. > > I have written a Python script that is supposed to run n background, > because it takes several minutes. First, I wanted to

[web2py] Re: Homemade Task Queues and Web server simultaneously

2017-02-24 Thread Dave S
On Friday, February 24, 2017 at 8:50:56 AM UTC-8, klas@gmail.com wrote: > > Dear community, > > I am working on a school project, using web2py. I have a Python script, > that should be run in background, because it takes several minutes. > > First, I tried using Homemade Task Queues, because t

[web2py] Re: I am stuck at the Administrative Log in page

2017-02-24 Thread Dave S
On Friday, February 24, 2017 at 8:50:56 AM UTC-8, tosh_p wrote: > > > I have tried using the password I made when starting the server but it > keeps telling me Ticket issued: > admin/192.168.43.192.2017-02-24.15-13-50.56354470-f94a-4063-a63d-32f167a0604f >

[web2py] Searching and sorting virtual field on grid

2017-02-24 Thread Carlos Cesar Caballero Díaz
Hi, how can I make a virtual field searchable and sortable in the grid? I can't find info related to this. Greetings. -- 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

[web2py] Re: SQLFORM.factory edit existing record(s) in multiple tables

2017-02-24 Thread lucas
I figured, but wasn't sure. I'm doing it the old fashioned way. thanx Massimo. -- 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 messag

[web2py] I am stuck at the Administrative Log in page

2017-02-24 Thread tosh_p
I have tried using the password I made when starting the server but it keeps telling me Ticket issued: admin/192.168.43.192.2017-02-24.15-13-50.56354470-f94a-4063-a63d-32f167a0604f

[web2py] API changed ?

2017-02-24 Thread Olivier Choquet
Hi everyone. My question might look a little bit weird but in the (very good) tutorial videos of web2py a link to the API is shown. It goes to quite detailled API pages with the regular look of API pages... If I follow the link now provided within the Web2Py site it goes to the chapter 4 of the

[web2py] Running Homemade Task Queues and Webserver simultaneously

2017-02-24 Thread klas . equiz
Dear community, I am working on a school project and my team is working with web2py. I have written a Python script that is supposed to run n background, because it takes several minutes. First, I wanted to use Homemade Task Queues, because they are simple and sufficient. But there is one prob

[web2py] Homemade Task Queues and Web server simultaneously

2017-02-24 Thread klas . equiz
Dear community, I am working on a school project, using web2py. I have a Python script, that should be run in background, because it takes several minutes. First, I tried using Homemade Task Queues, because they were simple and sufficient. But the problem is, to run the script checking the queu

[web2py] Re: SQLFORM.factory edit existing record(s) in multiple tables

2017-02-24 Thread Massimo Di Pierro
Sorry SQLFORM.factory does not provide this functionality. On Thursday, 23 February 2017 12:44:15 UTC-6, lucas wrote: > > hello one and all, > > ok, so I have the basic code: > > btn = [INPUT(_type='submit', _name='submit', _value='Add 1-Step')] > btn.append(INPUT(_type='submit', _name='su

[web2py] Re: text field input control

2017-02-24 Thread Massimo Di Pierro
not necessary with web2py forms. Escaping is taken care of automatically. Example: $ python web2py.py -S welcome In [*1*]: a = "hello" In [*2*]: print TEXTAREA(value=a) hello On Thursday, 23 February 2017 11:32:01 UTC-6, Pierre wrote: > > Hi everyone, > > is it useful to clean

[web2py] Task keeps in running indefinitely, regardless timeout

2017-02-24 Thread Lisandro
Hi there! I have several repetitive tasks configured in the scheduler, most of them run every 5-10 minutes, and timeout is set to 30-60 seconds. However it's been already around 6 or 7 times that I found a task stucked at "running" state, way beyond the timeout. I don't know where to look for th

Re: [web2py] Re: For those using ractive or vuejs. I need help !!

2017-02-24 Thread António Ramos
check these https://github.com/web2py/scaffold https://github.com/lucadealfaro/vue_stripe_web2py_shopping_cart 2017-02-22 11:01 GMT+00:00 'John Philip' via web2py-users < web2py@googlegroups.com>: > Thanks Dave, > unfortunately I still haven't managed it. > > regards, > > John > > > On Tuesday, F