Re: [web2py] Re: Implementing sweetalert js into web2py

2019-02-21 Thread Val K
You can use conditional rendering in the view like a following: {{if 'js_args' in response._vars:}}

Re: [web2py] Re: Implementing sweetalert js into web2py

2019-02-21 Thread Ben Duncan
Ok, got it Thanks a lot .. *Ben Duncan* DBA / Chief Software Architect Mississippi State Supreme Court Electronic Filing Division On Thu, Feb 21, 2019 at 3:53 AM Val K wrote: > You can use conditional rendering in the view like a following: > {{if 'js_args' in response._vars:}} >

[web2py] Re: Update web2py manually

2019-02-21 Thread Константин Комков
Today I tryied to do somthing like in instruction in web2py book and another video and topics. In my way web2py work with version for windows and don't work with source code. My test project "ererer" don't work also. I think maybe somebody test it on server even if it is not IIS, becouse I don'

[web2py] callback function

2019-02-21 Thread mostwanted
Maybe i lack imagination or its just my limited skill, i am looking at the POSONLINE store from the web2py appliances and i was wondering if its possible to avoid the page redirection everytime a person clicks on the item to buy, everytime a person clicks on an item to buy the page changes to

[web2py] invalid function (default/user) when migrating code to Python 3

2019-02-21 Thread 'jim kaubisch' via web2py-users
Hi, starting with an app that’s been running for several months running web2py 2.17.1 and Python 2.7.14 on maOS 10.14.3 (Mojave), I’m embarked on an app migration to Python 3 using web2py 2.17.2 and Python 3.7.2. This isn’t the first app I’ve converted to Python 3 and and I’ve got a pretty go

[web2py] SQLFORM with specific record

2019-02-21 Thread Christian Varas
Hello ! I'm trying to get a sqlform that display a specific entry, i've been able to get it work like in the book but just with one condition like this: record = db.rutas(request.args(0)) i need to do something like this: record = db.rutas.id == request.args(0) and db.lugar.user_id == auth.user['i