Re: [web2py] Re: web2py with js framework

2020-02-19 Thread Roberto Perdomo
I made an app some time ago with Web2py/Vue is not being maintained anymore, but maybe can help you. https://github.com/robertop23/web2py_vuejs_vuetify On Wed, Feb 19, 2020 at 4:18 PM Geordanis Baño Vega wrote: > > API with web2py and SPA|PWA with Vue, could be an option. Regards > > El mié.,

Re: [web2py] Re: web2py with js framework

2020-02-19 Thread Geordanis Baño Vega
API with web2py and SPA|PWA with Vue, could be an option. Regards El mié., 19 feb. 2020 a las 11:16, Andrew Rogers () escribió: > I've been using Vue for just 30 mins and web2py for not much longer. I > just wanted to get something really, really simple working. All i did was > added this to

[web2py] Re: web2py with js framework

2020-02-19 Thread Andrew Rogers
I've been using Vue for just 30 mins and web2py for not much longer. I just wanted to get something really, really simple working. All i did was added this to index.html. I am sure this is bad practice - just a first step to trying to understand how things fit together. Thanks to Mirek's tip

Re: [web2py] Re: web2py with js framework

2017-08-23 Thread Massimo Di Pierro
This is fantastic! On Wednesday, 16 August 2017 16:23:41 UTC-5, Ramos wrote: > > The first video tut about this deserves a beer... > > > > Sem > vírus. www.avast.com >

Re: [web2py] Re: web2py with js framework

2017-08-17 Thread António Ramos
my 2 cents... https://youtu.be/zt5gnKk40Zw 2017-08-16 22:23 GMT+01:00 António Ramos : > The first video tut about this deserves a beer... > > > > Sem > vírus. www.avast.com >

Re: [web2py] Re: web2py with js framework

2017-08-16 Thread António Ramos
The first video tut about this deserves a beer... Sem vírus. www.avast.com

[web2py] Re: web2py with js framework

2017-08-16 Thread Val K
@Massimo and @All concerned Uploaded to github with short manual and examples. Discussion is welcome! On Wednesday, August 16, 2017 at 6:00:36 AM UTC+3, Massimo Di Pierro wrote: > > I want to know more. > > On Tuesday, 15 August 2017 18:40:57 UTC-5,

[web2py] Re: web2py with js framework

2017-08-16 Thread Carlos Kitu
@valk: wow, that looks great. One of the most annoying things of working with vue.js was the need to write html. After getting used to the helpful web2py's html helpers, writing pure html feels really verbose. With the code you showed, the view seems somewhat similar to working with html

[web2py] Re: web2py with js framework

2017-08-16 Thread Carlos Kitu
I agree with you, @limedrop, for a fully "reactive"(let's call it that way) application I would also go your way. The use case I described only makes sense if you only need a small part of your application truly reactive. Best regards. -- Resources: - http://web2py.com - http://web2py.com/book

[web2py] Re: web2py with js framework

2017-08-15 Thread Massimo Di Pierro
I want to know more. On Tuesday, 15 August 2017 18:40:57 UTC-5, Val K wrote: > > > Considering the number of views, this issue is quite exciting. > > Here is my experience. I use RapydML and RapydScript to generate > Vue-components. > > I wrote brute-force parser + made some hacks of

[web2py] Re: web2py with js framework

2017-08-15 Thread Val K
Considering the number of views, this issue is quite exciting. Here is my experience. I use RapydML and RapydScript to generate Vue-components. I wrote brute-force parser + made some hacks of RapydML-compiler so, as exhaust I receive single js-file with embeded template as html-string.

[web2py] Re: web2py with js framework

2017-08-14 Thread 黄祥
thanks Carlos for the clear hints best regards, stifan > > -- 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

[web2py] Re: web2py with js framework

2017-08-12 Thread 黄祥
@ mirek thanks for the pointer, that's what i learned from scaffold app, need to remove the unnecessary thing like whoosh, so that i can focus to learn the logic what job is handle by whom (web2py or js framework), need to learn start from simplest first, hehe @ val just want to learn how can

[web2py] Re: web2py with js framework

2017-08-12 Thread Ben Lawrence
If you use that scaffold, it needs vue version 1. Current version of vue is version 2.something. On Tuesday, August 8, 2017 at 5:58:18 PM UTC-7, Anthony wrote: > > See if this helps: https://github.com/web2py/scaffold > > On Tuesday, August 8, 2017 at 8:54:12 PM UTC-4, 黄祥 wrote: >> >> is there

[web2py] Re: web2py with js framework

2017-08-12 Thread Val K
Hi, Stifan! What do you mean by "combine"? Are you ready to migrate to SPA or just want to make some awesome components to replace native web2py ones, but staying with client-server-ping-pong-logic? The latter is much easier (to connect with web2py you need only ajax request to get records,

[web2py] Re: web2py with js framework

2017-08-09 Thread Mirek Zvolský
This is not so much complex if you split it into 2 steps. 1) Be familiar with the welcome/ application - this is scaffold application in standard web2py distribution. - Models are called always and create db (database object and sql database structures) + auth (authorization object) + menu. -

[web2py] Re: web2py with js framework

2017-08-08 Thread 黄祥
thanks for reference anthony, already seen and learned from web2py scaffold (vue + whoosh) but for me, it's complex i want to learn it start from simple first, perhaps there is another simple web2py app with whatever js framework (1 table with 1 field that have CRUD operation or GRID is enough

[web2py] Re: web2py with js framework

2017-08-08 Thread Anthony
See if this helps: https://github.com/web2py/scaffold On Tuesday, August 8, 2017 at 8:54:12 PM UTC-4, 黄祥 wrote: > > is there any simple web2py app with js framework (whatever) that have a > CRUD or GRID example? > want to learn to combine it, but confuse, what is web2py job (define > models,