[web2py] Re: system project manager in web2py

2018-07-29 Thread mark
Hey Rodrigo, What are you looking for in particular? There's a number of open and closed source implementations available. On Sunday, July 29, 2018 at 2:52:19 PM UTC-5, Rodrigo attique santana wrote: > > Hi guys. > > I was looking for and found nothing about web2py project management systems.

[web2py] system project manager in web2py

2018-07-29 Thread Rodrigo attique santana
Hi guys. I was looking for and found nothing about web2py project management systems. Do you know if there is any such project? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/

[web2py] Why does cache.disk cause recursion error?

2018-07-29 Thread Joe Barnhart
I'm using cache.action with cache_model=cache.disk to play with optimization of my site. To be sure, this page has a lot going on -- complicated menus using "button" objects among the issues. But I don't have any circular references, at least as far as I can tell. Still, I get the error: Tr

[web2py] Postgres migration errors

2018-07-29 Thread Joe Barnhart
Iā€™d get rid of the idiom: db.colname==ā€œ%sā€%pythonvar Just replace it with: db.colname==pythonvar ā€” Joe -- 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) ---

Re: [web2py] Re: widget not working with list:string

2018-07-29 Thread Anthony
On Sunday, July 29, 2018 at 9:26:13 AM UTC-4, sandeep patel wrote: > > Thanks, Anthony! now. it's working > One more question I am using plugin_ckeditor so can I get the same > functionality in SQLFORM using widget=ckeditor.widget instead of widget > = SQLFORM.widgets.list.widget. > You mean yo

Re: [web2py] Re: widget not working with list:string

2018-07-29 Thread sandeep patel
Thanks, Anthony! now. it's working One more question I am using plugin_ckeditor so can I get the same functionality in SQLFORM using widget=ckeditor.widget instead of widget = SQLFORM.widgets.list.widget. sandeep/ On Sun, Jul 29, 2018 at 6:15 PM Anthony wrote: > In case 1, the default widget u

[web2py] Re: widget not working with list:string

2018-07-29 Thread Anthony
In case 1, the default widget used by web2py is SQLFORM.widgets.list.widget. In case 2, you are replacing that with the "string" widget, which is intended to work with a "string" field, not a "list" field. Anthony On Sunday, July 29, 2018 at 8:21:23 AM UTC-4, sandeep patel wrote: > > > Hello A

[web2py] widget not working with list:string

2018-07-29 Thread sandeep patel
Hello All, In my case widget and list: string Field is not working properly. *Case 1 (Without Widget)* In this case, my form work proply with list:string Field # db.py db.define_table('content_ck', Field('title', length=255), Field('public_ck', 'boolean', default=True), Field('text_c