[web2py] Javascript functions for Canvas not working

2016-11-30 Thread Brian M
I have created a codepen that draws on the canvas and used a javascript addEventListener to capture the mouse clicks. I think that not working properly is my issue. What would be the proper procedure to grab a codepen sample and serve it up in the framework properly? I am still on the learning

[web2py] Is web2py better for interacting with python scripts?

2016-11-30 Thread Alex M
When wanting to make a web gui for a python script, is it then better to use a python web framework? I other words is there a better interaction between web2py and python scripts running on the server, than when using something like RoR to interact with python scripts. Or does it not matter

[web2py] Problem with grid search feature

2016-11-30 Thread Iago Pinal
Hello, I am using an SQLFORM.grid to interact with a database. When I use the LEFT JOIN with this form the search fields in the SQLFORM.grid repeats the search fields (see screen capture). Did you any of you have any clue why this could be happening and how to solve it? Thank you Iago

[web2py] Re: How to solve vertical alignment too high of SQLForm read-only field

2016-11-30 Thread Bob St John
see also https://groups.google.com/forum/?fromgroups#!searchin/web2py/misaligned%7Csort:relevance/web2py/6Qbcr8nuey8/nVzxMOxxt_gJ On Monday, November 21, 2016 at 7:42:54 AM UTC-8, Martin de Groot wrote: > > In a SQLForm all widget-controls of writable fields are nicely, correctly > vertically

Re: [web2py] Re: Performance using MSSQL stored procedures

2016-11-30 Thread Brian M
Can you use web2py for a reporting site - sure, a lot of what I do with it is reporting. I've been using DataTables.net which can provide pagination, sorting, search, aggregation and even basic export (via TableTools) for almost free. While it can enhance regular old HTML tables, with large

[web2py] setup_exe.py bbfreeze- Not building working executable

2016-11-30 Thread Brian M
Has anybody built their own Windows executable using extras\build_web2py\setup_exe.py lately? I've copied setup_exe.py and setup_exe.conf to the web2py TLD and ran python setup_exe.py bbfreeze and it builds the binary alright. But then when I actually launch the executable and fire up web2py

Re: [web2py] Re: Performance using MSSQL stored procedures

2016-11-30 Thread Gabor Nyul
Well, my users have as good as no computer literary, so the reports (lists) must be predefined for them. Theyhave just to enter some parameters (like date from, date to) Nd run the reports. That's why I'm looking for an easy way to present those lists to them. And of course, all the normal

[web2py] Re: Performance using MSSQL stored procedures

2016-11-30 Thread Alex Glaros
with so many reports, why not just put them in a reports generator? this way, clients could tweak or create new simple reports themselves without programmer http://blog.capterra.com/5-awesome-free-and-open-source-reporting-software-packages/ Alex Glaros -- Resources: - http://web2py.com -

[web2py] Re: How to solve vertical alignment too high of SQLForm read-only field

2016-11-30 Thread Anthony
> > 2. hidden is included to make sure that the update back end operation does > not make those fields as NULL. Not sure if the below alternatives will > work: (a) using 'readonly' attribute so that the values go to the back end > - but does it happen in all the browsers? (b) may be we can

[web2py] Using another’s application to session login

2016-11-30 Thread LC LC
Hi, i found to the auth with this link https://web2py.wordpress.com/2010/04/30/using-anothers-application-session-to-login/ but it does not work for me .. Any different idea ? How can i do thi stuff ? Thank you -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) -

[web2py] Performance using MSSQL stored procedures

2016-11-30 Thread Gabor Nyul
Hi, I'm a complete beginner on Web2py. I have to write a complex reporting app (no CRUD, just read only reports (tables, graphs and Excel download possibilities), around 50 reports. The database is already given, so I do not want to create any table, instead of that I have to run big and

[web2py] Re: This way of define models have some increase? ( as Django and as SqlAlchemy)

2016-11-30 Thread Leonel Câmara
The Django if you like ORMs, I personally hate them, one of the main reasons I picked web2py was precisely because it didn't have one. I much prefer the simpler abstraction provided by the DAL. I find that blackboxes are an illusion so I don't like complicated abstractions that always end up

[web2py] This way of define models have some increase? ( as Django and as SqlAlchemy)

2016-11-30 Thread Marlysson Silva
References http://www.web2py.com/AlterEgo/default/show/189 Django Like: http://web2py.com/AlterEgo/default/download/document.file.08621820-64d8-4db5-a85c-569a647a4437.py SQLAlchemyLike http://web2py.com/AlterEgo/default/download/document.file.08621820-64d8-4db5-a85c-569a647a4437.py --