[web2py] Re: grid for data entry

2017-07-24 Thread T.R.Rajkumar
Any ideas? -- 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-users"

[web2py] Re: How to use HTML escapes in Field titles

2017-07-24 Thread Joe Barnhart
Ugh. Replace the word "title" with "label" everywhere. Global search and replace. -- 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

[web2py] How to use HTML escapes in Field titles

2017-07-24 Thread Joe Barnhart
I have field titles which need to indicate "less than or equal" or "greater than" symbols. HTML provides such escapes with the character sequences and respectively. But when I use these characters in the "title" of a Field, the displayed SQLFORM changes these back into "" for example

[web2py] Virtual field strange behaviour

2017-07-24 Thread Anthony
Please attach a minimal app that reproduces the behavior. -- 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

RE: [web2py] Re: Virtual field strange behaviour

2017-07-24 Thread ramstein74
But the select is on table log and not on table status. Also i have many rows in table status and the select on table log fires the virtual field on table status and creates only one row in log.Im confused by this Enviado a partir do meu smartphone Samsung Galaxy. Mensagem original

[web2py] Re: Virtual field strange behaviour

2017-07-24 Thread Leonel Câmara
What do you mean? Your virtual field is inserting 'mmm' into the log table. When you call "select" the virtual field is called for each row by the default processor which creates the Rows object. You can see the default processing rows from the DB get here:

[web2py] Virtual field strange behaviour

2017-07-24 Thread António Ramos
i have 2 tables db.define_table('log', Field('msg',"text"), Field('created','datetime',default=datetime.datetime.utcnow())) db.define_table( "status", Field.Virtual('blabla', lambda row: db.log.insert(msg="mmm")), Format="%(title)s" ) if i go to admin and select "log" database, every time i

[web2py] Re: No puedo correr Web2Py en windows 10

2017-07-24 Thread Leonel Câmara
Web2py works fine in windows 10. Do you have an index function in default.py? -- 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

[web2py] No puedo correr Web2Py en windows 10

2017-07-24 Thread Mayra Lorena Altamirano Crespo
Hola Buen día! Por alguna razón no puedo correr el Web2py en mi maquina. Es Windows 10 x64. Me aparece el siguiente error: -- Resources: -

Re: [web2py] Re: wrapping long text lengths in grid/smartgrid

2017-07-24 Thread rāma
Still no solution? On Wednesday, 5 October 2011 19:37:39 UTC+8, Anthony wrote: > > I think if you specify a much longer maxtextlength, the text will > ultimately wrap, but it may cause the column to be much wider than you > want. Maybe all the th's and td's should include column-specific