[web2py] Re: Changing color of a cell function of another cell value

2018-11-23 Thread Val K
Your first example should work, just keep in mind, that in case of query on multiple tables, explicit notation is required and row.cntnumok should be expanded to row.table_name_containing_cntnumok.cntnumok note that explicit notation works on a single-table-query too On Wednesday,

[web2py] Re: Delete space from users email in auth form

2018-11-23 Thread Константин Комков
Thank you, I try to change it ) -- 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

[web2py] Re: Delete space from users email in auth form

2018-11-23 Thread Val K
`onvalidation` is what happens *after *form validation is passed. You can add your validators to auth_user.email.requires (they should be first on the validators list ) or you can insert your formatters in user() controller, I mean: def user(): if request.vars.email:

[web2py] how to wrap column titles in grid?

2018-11-23 Thread Alex Glaros
let's say I have a boolean field that only takes up 1 character. I don't want the grid column header (field label) to take up too much space but it needs to be descriptive, e.g., "Final exam is past due". Is it possible to wrap the header like below? Final exam is past due

Re: [web2py] Re: Vuepy = Vue.js - (NOde.js + webpack) + RapydScript_in_browser + CodeMirror

2018-11-23 Thread Val K
Oh, I am sorry, I forgot to say how it relates to web2py. I want to make it possible to use this IDE as alternative appadmin IDE. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

[web2py] Re: Divider in

2018-11-23 Thread Leonel Câmara
You need to use dropdown-divider now, it was changed in bootstrap 4 -- 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

[web2py] Restricting values entered into a field to a certain minimum

2018-11-23 Thread mostwanted
How can I restrict a value entered into a database field to a certain desirable minimum? -- 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

Re: [web2py] Re: Vuepy = Vue.js - (NOde.js + webpack) + RapydScript_in_browser + CodeMirror

2018-11-23 Thread António Ramos
VuePy looks very futuristic. I like it ... Em sex, 23 de nov de 2018 às 09:29, Val K escreveu: > OK, it seems I should write some comments. > I've done a simple stupid IDE with embedded Rapydscript compiler + > RapydML-like parser (which is similar to pug). It emulates file system and >

[web2py] Re: Vuepy = Vue.js - (NOde.js + webpack) + RapydScript_in_browser + CodeMirror

2018-11-23 Thread Val K
OK, it seems I should write some comments. I've done a simple stupid IDE with embedded Rapydscript compiler + RapydML-like parser (which is similar to pug). It emulates file system and utilizes localStorage to persist it (thanks to JSZip it is possible to store up to 20...25MB in 5MB -

[web2py] How to get tickets in DB working

2018-11-23 Thread appjarbiz
I had to modify Web2Py as follows to get tickets stored in the DB (necessary for cloud deployment with no filesystem) It working for tracebacks but not for snapshots. I needed to modify Web2Py 2.17.2 to: 1) Use JSON instead of Pickle for serialization as Pickle has errors serializing to

[web2py] Re: Changing color of a cell function of another cell value

2018-11-23 Thread Yann Dulondel
Thank Javier, I tried but not working. The variable cntnumok contain the number of the container number not the state of the container number Code generate (replace the css class by the value of variable) HASU1484890 Le mercredi 21 novembre 2018 10:51:16 UTC+1, Yann Dulondel a écrit : > > Hi

[web2py] Re: Scheduler Replacement

2018-11-23 Thread Niphlod
jokes aside, yeah, you definitely hit scheduler's limits, or, for better saying, limits using a relational database as a queue table. web2py's scheduler can still be optimized, and I feel that 30k tasks are manageable, if they are spread throughout the day (20 tasks a minute if math is not

[web2py] Re: Scheduler Replacement

2018-11-23 Thread Dave S
On Thursday, November 22, 2018 at 11:57:08 PM UTC-8, Niphlod wrote: > > https://gph.is/1eNXnLk > > Simone, I bow before the master. /dps > > > On Wednesday, November 21, 2018 at 10:19:40 PM UTC+1, Dave S wrote: >> >> >> >> On Wednesday, November 21, 2018 at 10:31:13 AM UTC-8, Boris Aramis