[web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2013-01-09 Thread Massimo Di Pierro
Is this down? http://labs.blouweb.com/powerformwizard On Wednesday, 29 June 2011 09:33:10 UTC-5, rochacbruno wrote: Hi, I just created a new plugin for stepped form wizards. I made it last night, so it is not tested very well, I would like your help to test it. web2py PowerFormWizard

Re: [web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2013-01-09 Thread juaneduardo
Bruno to solve 'PowerFormWizard' object has no attribute 'readonly' I added 2 lines to powerForm plugin In modules/plugin_PowerFormWizard.py def __init__(self, table, steps, formstyle = 'divs', options={},

Re: [web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2012-12-26 Thread juaneduardo
Bruno to solve 'PowerFormWizard' object has no attribute 'readonly' I added 2 lines to powerForm plugin In modules/plugin_PowerFormWizard.py def __init__(self, table, steps, formstyle = 'divs', options={},

Re: [web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2012-07-23 Thread Don_X
Bruno Rocha, This is a very nice plugin ! ... very useful, thanks for sharing ! I have to create 2 registrations methods ( one short and one long method to register ) I have one problem, how would you suggest to user the wizard when there are 3 tables involved in the long signup method ??

Re: [web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2012-07-23 Thread Bruno Rocha
Also, there is a nice example in the web2py cookbook Source code is here: https://github.com/mdipierro/web2py-recipes-source/tree/master/source/04_advanced_forms/06_Creating_a_Form_Wizard App is here:

Re: [web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2012-07-23 Thread Bruno Rocha
fixed link for app: https://github.com/mdipierro/web2py-recipes-source/raw/master/apps/04_advanced_forms/web2py.app.form_wizard.w2p --

Re: [web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2012-07-23 Thread Don_X
Bruno, I did follow these examples already ... I tried different things ... different approaches ... but for 3 tables it seems not do-able ! I am still searching for ways for it to be done ! .. so far .. no luck ! ... I tried using the method with 3 tables like this ( by combining the method

[web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2012-07-18 Thread Akash Kakkar
Hi Bruno, The links don't work for me (invalid request) http://labs.blouweb.com/powerformwizard http://labs.blouweb.com Thanks, Akash On Wednesday, 29 June 2011 20:03:10 UTC+5:30, rochacbruno wrote: Hi, I just created a new plugin for stepped form wizards. I made it last night, so it

Re: [web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2012-07-18 Thread António Ramos
INVALID REQUEST!! 2012/7/18 Akash Kakkar akash.kak...@gmail.com Hi Bruno, The links don't work for me (invalid request) http://labs.blouweb.com/powerformwizard http://labs.blouweb.com Thanks, Akash On Wednesday, 29 June 2011 20:03:10 UTC+5:30, rochacbruno wrote: Hi, I just

Re: [web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2012-07-18 Thread Rahul
Well, this works - you can download the web2py projects from here https://bitbucket.org/rochacbruno/powerformwizard Cheers , Rahul D On Wednesday, July 18, 2012 4:33:12 PM UTC+5:30, Ramos wrote: INVALID REQUEST!! 2012/7/18 Akash Kakkar akash.kak...@gmail.com Hi Bruno, The

Re: [web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2012-07-18 Thread António Ramos
Can i force the form to show the step that is active? i want to use this as a workflow between different users. The first users fills the first step and then submits to the second user. The second user can edit the second step but can only read the first step and so on IS this possible?

Re: [web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2012-07-18 Thread António Ramos
Also i would be nice in a workflow related document that the tabs that are next in the flow would be highlithed so the user easly sees what is next. Thank you António 2012/7/18 António Ramos ramstei...@gmail.com Can i force the form to show the step that is active? i want to use this as a

Re: [web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2012-07-13 Thread Christian Espinoza
Hello Bruno, I did download the example app to test it, but i get this error: type 'exceptions.AttributeError' 'PowerFormWizard' object has no attribute 'readonly' do you know what can be the problem? Thanks in advance Christian. El jueves, 30 de junio de 2011 08:44:42 UTC-4, rochacbruno

[web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2011-06-30 Thread niknok
In the validation example, I entered a single character in the Bio and was allowed to proceed to the next field despite the db.person.bio.requires = IS_LENGTH(minsize=5, maxsize=200). You made a note about Client side validation is not supposed to validate everything!, is this included in that

[web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2011-06-30 Thread mart
very cool!!! :) On Jun 30, 2:41 am, niknok nikolai...@gmail.com wrote: In the validation example,  I entered a single character in the Bio and was allowed to proceed to the next field despite the db.person.bio.requires = IS_LENGTH(minsize=5, maxsize=200). You  made a note about Client side

[web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2011-06-30 Thread niknok
Clarification regarding the bio field with requires. It does let me proceed to the next step, but will not be allowed to submit the data after validation unless i meet the requires statement. A bit confusing since some fields will allow me to move to next step. One more thing, is there going to

Re: [web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2011-06-30 Thread Bruno Rocha
Even without client side validation, the server side will perform at the end of submission. The client-side validation, for now, just check if a field is required, i did not implemented yet the other kind of client validation. I guess you can use factory in the normal way,

[web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2011-06-29 Thread Anthony
This is great! Thanks for contributing. :-) On Wednesday, June 29, 2011 10:33:10 AM UTC-4, rochacbruno wrote: Hi, I just created a new plugin for stepped form wizards. I made it last night, so it is not tested very well, I would like your help to test it. web2py PowerFormWizard Plugin

[web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2011-06-29 Thread GoldenTiger
iujuu Bruno, it`s the best web2py plugin for me congratulations + thanks

[web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2011-06-29 Thread blackthorne
yes! awesome! just came to my mind having such a system for multiple forms/wizards managed by the db. So you could easily add forms like that in your app and manage them. Good for more complex apps like SAP. On Jun 29, 5:17 pm, GoldenTiger goldenboy...@gmail.com wrote: iujuu Bruno, it`s

[web2py] Re: new plugin - web2py Form Wizard - PowerFormWizard

2011-06-29 Thread niknok
+1 Another golden egg from the proverbial goose ... or gander, in this case. :P Thank you Bruno On Jun 29, 10:33 pm, Bruno Rocha rochacbr...@gmail.com wrote: Hi, I just created a new plugin for stepped form wizards. I made it last night, so it is not tested very well, I would like your