Re: [web2py] Re: sqlform insert row id

2021-07-01 Thread Javier Pepe
http://web2py.com/books/default/chapter/29/07/forms-and-validators#SQLFORM-and-insert-update-delete In form.vars.id store Last ID inserted El jue., 1 de julio de 2021 15:47, Dave S escribió: > > > On Wednesday, June 30, 2021 at 11:35:29 PM UTC-7 Clemens wrote: > >> the insert returns the id of

Re: [web2py] customizing SQLFORM

2020-03-18 Thread Javier Pepe
Mar 18, 2020 at 4:22 PM Maurice Waka > wrote: > >> I'm getting a none value. See attached. >> >> On Wed, Mar 18, 2020 at 4:14 PM Javier Pepe wrote: >> >>> in the manual >>> >>> http://www.web2py.com/books/default/chapter/29/07/forms-and-validator

Re: [web2py] customizing SQLFORM

2020-03-18 Thread Javier Pepe
: > Thanks. > I put the code in the model.py code. It works. > > How about float button to right? > > Regards > > On Wed, Mar 18, 2020 at 4:00 PM Javier Pepe wrote: > >> Hi >> >> You can try with this >> >> db.posts.question.label = ' ' >> >

Re: [web2py] customizing SQLFORM

2020-03-18 Thread Javier Pepe
Hi You can try with this db.posts.question.label = ' ' label attr replace field name El mié., 18 de mar. de 2020 a la(s) 09:51, Maurice Waka ( mauricew...@gmail.com) escribió: > Hello, > > I'm trying to customize the SQLFORM to look like textarea/inputwith > text area floating left and

Re: [web2py] Problem passing a json object to controller

2019-11-20 Thread Javier Pepe
You need use: var = json.loads ( request.post_vars.items[*"*json1*"*] ) El mié., 20 de nov. de 2019 a la(s) 14:08, Patito Feo ( patitofeo...@gmail.com) escribió: > Hi, > > Ive been trying to pass an object with keys to the controller. But i > havent been able to extract the request.vars. >

Re: [web2py] Re: Changing color of a cell function of another cell value

2018-11-22 Thread Javier Pepe
You can try this way db.articles.conteneur.represent = lambda cntnumok, row: SPAN*(*row[ 'conteneur'], _class='cnt-false'*)* if cntnumok==False and cntnumok else None Check parenthesis El mié., 21 de nov. de 2018 a la(s) 07:42, Yann Dulondel ( yann.dulon...@gmail.com) escribió: > > > Le

Re: [web2py] Connect DAL to Azure Postgres Instance

2018-09-28 Thread Javier Pepe
Try this: db = DAL("postgres://xw@dbname-postgres: p...@dbname-postgres.postgres.database.azure.com/dbname") El vie., 28 de sep. de 2018 a la(s) 02:17, gb (gregb...@gmail.com) escribió: > Trying to connect to Azure-hosted postgres on version > 2.17.1-stable+timestamp.2018.08.06.01.02.56 > > If

Re: [web2py] Setting writable and readable=True on all fields

2018-09-27 Thread Javier Pepe
You need use the follow code: for f in my_table.fields(): db['my_table'][f].writable=True El jue., 27 de sep. de 2018 a la(s) 19:01, icodk (i...@alpiron.com) escribió: > At a certain point, I need to allow read and write on all fields of a > specific table > > How can I iterate through all

Re: [web2py] CUSTOMIZING WEB2PY FORMS

2018-09-07 Thread Javier Pepe
In docs you have example. http://web2py.com/books/default/chapter/29/07/forms-and-validators#Custom-forms El vie., 7 de sep. de 2018 a la(s) 07:02, elisha bere (elishabe...@gmail.com) escribió: > Hie guys, > > how do i customize the buttons on the forms if i add =form to my web page? > > -- >

Re: [web2py] SQLFORM IS_NOT_EMPTY validator dependent on the value of another request vara

2018-01-15 Thread Javier Pepe
Hi You can use de conditional show_if http://web2py.com/books/default/chapter/29/07/forms-and-validators#Conditional-fields db,table.text_field.show_if = (db.table.select_field == Other) 2018-01-12 23:19 GMT-03:00 vtcpe12 : > Hi, > > I am utilizing the IS_IN_SET

Re: [web2py] Open a form (form=SQLFORM(db.marks)) for a selected person by clicking on a link of their name

2017-10-22 Thread Javier Pepe
Hi You can fill the record before SQLFORM def marks_entry(): stu=db.student(request.args(0)) *db.marks.students.default = stu.id * form=SQLFORM(db.marks) return locals(); 2017-10-22 8:59 GMT-03:00 mostwanted : > Hi guys, i need help, I'm

Re: [web2py] Re: how to create pdf report in web2py???

2017-08-29 Thread Javier Pepe
Alex The tool is very good, you have a user list for question, i am to try the designer and not found howto save this. Thanks 2017-08-26 10:19 GMT-03:00 Alex : > We created a report tool since creating pdf reports in a web application > is a common problem and none of the

Re: [web2py] SQLFORM.GRID Change Header and labels too?

2017-04-07 Thread Javier Pepe
Hi You can use de label atribute in Field definition, this used in all forms. - label is a string (or a helper or something that can be serialized to a string) that contains the label to be used for this field in auto-generated forms.

Re: [web2py] Grid

2017-01-24 Thread Javier Pepe
Hi You can use selectable metod to pass selected row to a function to update records. El sáb., 21 ene. 2017 a las 12:05, Bishal Saha () escribió: > Cant we use grid to update few rows ? > > -- > Resources: > - http://web2py.com > - http://web2py.com/book

Re: [web2py] How to define tables in a new model file

2016-05-11 Thread Javier Pepe
Hi Web2py load files in alphabet orden. You need rename files for load in correct order. For example: Db.py as 00_db.py Data.py as 01_data.py El dom., 8 de mayo de 2016 10:48, Simon Carr escribió: > I created a new model and called it data.py > > I created a definition

Re: [web2py] Changing color of field

2016-04-21 Thread Javier Pepe
Hello If you use bootstrap, can change the class of field http://getbootstrap.com/css/#helper-classes-backgrounds On Thu, Apr 21, 2016 at 9:39 AM, Md Anam Raihan wrote: > I am creating task management app and i want to change color of field if > deadline is

Re: [web2py] Re: Using tinymce for text areas of in component views

2016-02-17 Thread Javier Pepe
Hello This work for me: Controller: def textarea(): form=FORM('Texto:', TEXTAREA(_name='texto', requires=IS_NOT_EMPTY(),_id='mytextarea'), INPUT(_type='submit')) return locals() View: tinymce.init({ selector: '#mytextarea' }); {{extend

Re: [web2py] charts on web2py

2016-01-20 Thread Javier Pepe
Hi For simple charts you can use google chart, exist plugin for integrate this http://www.web2pyslices.com/slice/show/1721/google-charts-plugin On Wed, Jan 20, 2016 at 3:09 PM, Richard Vézina wrote: > Do you know that plotly was open sourced : https://plot.ly/

Re: [web2py] Showing menu only after successful login

2015-02-10 Thread Javier Pepe
Also you can try to verify the model (menu.py) that the user is logged before loading the array with the options menu if auth.is_logged_in (): response.menu = [options ] else: response.menu = [] On Tue, Feb 10, 2015 at 5:26 PM, Richard Vézina ml.richard.vez...@gmail.com wrote:

Re: [web2py] grid problem

2014-07-29 Thread Javier Pepe
form = SQLFORM.grid(db.t_proposte, searchable=True, deletable=True, details=False, * selectable**=True,** - must be a function* csv=True, user_signature=False) #

Re: [web2py] how to turn off the record counter on Sqlform.grid

2014-06-26 Thread Javier Pepe
I'm use this code: form = SQLFORM.grid() form.element('.web2py_counter',replace=None) On Thu, Jun 26, 2014 at 2:04 AM, JorgeH jorgeh...@gmail.com wrote: hello Is it possible to turn off the record counter , on the top right of the table generated by sqlform.frid ?? -- Resources: -

Re: [web2py] Re: Cron job every 30 seconds

2013-11-28 Thread Javier Pepe
You can add cron job which sleep * * * * * sleep 0;/usr/local/apps/web2py/applications/sipacweb/private/run procesos.py * * * * * sleep 10;/usr/local/apps/web2py/applications/sipacweb/private/run procesos.py * * * * * sleep 20;/usr/local/apps/web2py/applications/sipacweb/private/run procesos.py

Re: [web2py] Re: simple button in grid question

2013-09-16 Thread Javier Pepe
You need pass a list of dict links = [{'header':'', 'body': lambda row: A('',_title='Procesar',_class='icon-refresh',_href=URL(c='planilla', {'header':'', 'body': lambda row: A('',_title='Mail',_class='icon-envelope',_href='index/pedircontadores/% {'header':'', 'body': lambda

Re: [web2py] Re: web2py 2.6.1 is OUT - IMPORTANT READ

2013-09-13 Thread Javier Pepe
+1 On Fri, Sep 13, 2013 at 5:56 AM, Tim Richardson t...@growthpath.com.auwrote: I've been using it for about a month on one Windows production site with ms-sqlserver, and it's a great release. So many improvements and even more fun to use. Thanks. -- Resources: - http://web2py.com -

Re: [web2py] Re: web2py 2.6.1 is OUT - IMPORTANT READ

2013-09-13 Thread Javier Pepe
I'm try to use new version, but missing settings.cfg file. In that directory has to put it and what format must have? Thansk On Fri, Sep 13, 2013 at 8:40 AM, Javier Pepe javierp...@gmail.com wrote: +1 On Fri, Sep 13, 2013 at 5:56 AM, Tim Richardson t...@growthpath.com.auwrote: I've been

Re: [web2py] Re: web2py 2.6.1 is OUT - IMPORTANT READ

2013-09-13 Thread Javier Pepe
Now work The update from admin interface not end correctly. Unzip file over actual folder, restart and work!!! On Fri, Sep 13, 2013 at 8:49 AM, Javier Pepe javierp...@gmail.com wrote: I'm try to use new version, but missing settings.cfg file. In that directory has to put it and what

[web2py] Load every 5 seconds

2013-08-30 Thread Javier Pepe
Hi I need load SQLFOM.grid every 5 seconds, try whith autorefresh, but load all page. I need help to create javascript to load only a SQLFROM.grid. Thanks -- --- You received this message because you are subscribed to the Google Groups web2py-users group. To unsubscribe from this group and

Re: [web2py] Re: Load every 5 seconds

2013-08-30 Thread Javier Pepe
Thanks works better than expected On Fri, Aug 30, 2013 at 2:53 PM, Paolo Valleri paolo.vall...@gmail.comwrote: Have a look at http://web2py.com/books/default/chapter/29/12/components-and-plugins#Components Paolo On Friday, August 30, 2013 7:50:10 PM UTC+2, Javier Pepe wrote: Hi I need

Re: [web2py] Any way of removing the text from Grid buttons?

2013-08-29 Thread Javier Pepe
Is simple SQLFORM.grid(query,showbuttontext=False) On Wed, Aug 28, 2013 at 8:19 PM, greenpoise danel.sega...@gmail.com wrote: is there a way to remove the text from grid buttons? I mean the stock ones (View, Edit, Delete) -- --- You received this message because you are subscribed to

Re: [web2py] Re: Change form layout

2013-06-24 Thread Javier Pepe
You can try whith: http://dev.s-cubism.com/plugin_solidform On Mon, Jun 24, 2013 at 12:02 PM, Tom Russell t...@caregointl.com wrote: Ah, I see now. Thanks On Mon, Jun 24, 2013 at 10:50 AM, Anthony abasta...@gmail.com wrote: No, 3 columns means: Col 1 Col 2 Col 3 label widget

Re: [web2py] SQLFROM.GRID SELECTEBLE

2013-05-10 Thread Javier Pepe
Hi you have to use selectable = lambda ids: function(ids) def function(ids): ... ... ... On Fri, May 10, 2013 at 9:14 AM, Pawan Jha pawan.pan...@agnicient.comwrote: Hi I am new developer with Web2py so getting problem to work on so please help I'm using selectable=True in the

Re: [web2py] REF: Pie/bar Charts

2013-04-04 Thread Javier Pepe
Hello I am use http://pygooglechart.slowchop.com/ Is very simple, create a file, a use then in the view. On Thu, Apr 4, 2013 at 10:37 AM, Teddy Nyambe software@gmail.comwrote: whats the easiest way to create a pie/bar chart using web2py/python, i was attempting to use pycha with

[web2py] Help with query

2013-03-05 Thread Pepe Araya
Hi! In words what i need is to get a set from this query: select the 'persons.email' and 'persons.id' from table 'persons' *that are not in*table 'invitations.to' my tables: db.define_table('persons', Field('name'), Field('email')) db.define_table('invitations', Field('from',db.persons),

Re: [web2py] Re: Help with query

2013-03-05 Thread Pepe Araya
Hi Derek and Anthony, that's make the trick!! Thank you both!! *Pepe Araya* Diseñador / Designer On Tue, Mar 5, 2013 at 4:18 PM, Derek sp1d...@gmail.com wrote: You can negate a part of a query by using a tilde (~). On Tuesday, March 5, 2013 10:30:50 AM UTC-7, Pepe Araya wrote: Hi

Re: [web2py] Smartgrid: How to make value from foreign table appear in table when only foreign key is in table

2013-02-22 Thread Javier Pepe
Alex Use represent for this: http://web2py.com/books/default/chapter/29/06#Record-representation Ej: db.Word.dictionaryTipeID.represent = lambda id,row: db.DictionaryType (id).dictionaryName On Thu, Feb 21, 2013 at 10:35 PM, Alex Glaros alexgla...@gmail.com wrote: Instead of

Re: [web2py] SQLFORM.grid and the maxtextlength parameter: The parameter doesnt work in my code

2013-01-18 Thread Javier Pepe
Hello maxtextlength is for all fields, you need use maxtextlengths http://web2py.com/book/default/chapter/07#SQLFORM.grid-and-SQLFORM.smartgrid On Fri, Jan 18, 2013 at 9:40 AM, Sverre sverreodeg...@gmail.com wrote: I have the controller: def commodities(): tbl = db.commodities

Re: [web2py] Smartgrid orderby field , descending

2013-01-09 Thread Javier Pepe
Use this: orderby=~db.table.date On Wed, Jan 9, 2013 at 7:08 AM, António Ramos ramstei...@gmail.com wrote: hello, how do i order a smartgrid based on a field in descending order? for example the auth event table on date descending thank you -- --

Re: [web2py] Re: Need to save a multipage PDF

2012-11-21 Thread Javier Pepe
Try this: def taggen_print(): *pdf = FPDF()* rows = db(db.bike_no.id 0).select() for row in rows: tag_no = row.bike_typ+str(row.id) pfile = tag_no+'_p.pdf' pdf.add_page() pdf.set_font('Arial', 'B', 14) pdf.cell(40,10,tag_no) * pdf.AddPage()* *

Re: [web2py] SQLFORM.grid dinamically update fields

2012-10-03 Thread Javier Pepe
chech this http://web2py.com/books/default/chapter/29/07?search=onupdate may help. On Wed, Oct 3, 2012 at 9:49 PM, alex a22...@gmail.com wrote: I have a SQLFORM.grid. When the user updates field 'a' in the grid, before submitting the form, field 'b' should represent a calculation based

Re: [web2py] Re: Calculated field in SQLFORM.grid

2012-10-01 Thread Javier Pepe
Hello You can create a function to represent in link links = [{'header':'Contador', 'body': lambda row: count_b(row.id) }] def count_b(a.id): c = db(db.B.ref_a == id).count() if c: count = c else: count = 0 return count On Sun, Sep 30, 2012 at 9:26 AM, Massimo

[web2py] Re: denormalizing a list:reference -- need a bit of help

2012-09-12 Thread Pepe Araya
Hi, a question: how do you display the entities related to a user in a View which displays a list of users with their related entities?? for example: Name: user 1 Entities: one, two -- Name: user 2 Entities: one -- ... Thanks. On Friday, May 11, 2012 12:16:32 PM UTC-4, Niphlod wrote: If

[web2py] Re: denormalizing a list:reference -- need a bit of help

2012-09-12 Thread Pepe Araya
and standard for web2py. If you were asking for something else please post more details... Il giorno mercoledì 12 settembre 2012 11:10:33 UTC+2, Pepe Araya ha scritto: Hi, a question: how do you display the entities related to a user in a View which displays a list of users

[web2py] Re: denormalizing a list:reference -- need a bit of help

2012-09-12 Thread Pepe Araya
Thanks you! On Wednesday, September 12, 2012 6:51:56 AM UTC-3, Niphlod wrote: no, it wont. users is a list of users. you need to fetch the list of entities separately for every item of the list of the users. Il giorno mercoledì 12 settembre 2012 11:46:32 UTC+2, Pepe Araya ha scritto

[web2py] Re: HTML truncate

2012-09-12 Thread Pepe Araya
, but maybe there is a better way? On Tuesday, September 11, 2012 1:48:59 PM UTC+1, Pepe Araya wrote: Hi Massimo, Sorry for my poor explanation. What I don't get is in the view when i call the field value {{=tipo_3.descripcion}} I get the whole text and not the truncated one like

[web2py] HTML truncate

2012-09-11 Thread Pepe Araya
Hello, I need to truncate a field that contains HTML content. Now i'm using htmltruncate https://github.com/eentzel/htmltruncate.py in a controller that return a SQLFORM.smartgrid and it works perfect: def noticias(): db.noticias.cuerpo.represent = lambda field,row:

[web2py] Re: HTML truncate

2012-09-11 Thread Pepe Araya
does it mean it does not work? Can you import it? Can you import it from python? On Tuesday, 11 September 2012 00:55:03 UTC-5, Pepe Araya wrote: Hello, I need to truncate a field that contains HTML content. Now i'm using htmltruncate https://github.com/eentzel/htmltruncate.py

[web2py] represent list:reference

2012-09-11 Thread Pepe Araya
Hello, I need to display the format value of the referenced table in a list:reference and not the list of ids. I have these tables: db.define_table('personas', Field('nombres'), Field('apellidos'), format='%(nombres)s %(apellidos)s') db.define_table('publicaciones', Field('titulo'),

[web2py] Not loading static files when accessing default view in controller

2012-08-10 Thread Pepe C
I have a site with a URL like this: www.mydomain/init/foldername/viewname When I type the URL like this *www.mydomain/init/foldername* I don't get the static files loaded. However, when I type *www.mydomain/init/foldername/ *(with a backlash at the very end) the static files are loaded OK. What

Re: [web2py] Re: bootstrap and user panel

2012-07-24 Thread Javier Pepe
Hello Delete the content on database dir. The system recreate auth tables. On Tue, Jul 24, 2012 at 2:49 AM, murtaza52 murtaza.hus...@sevenolives.comwrote: Hello Martin, The CSS is cool so +1 for this. 1) I cloned your welcome app repo and placed it under applications, this is the

[web2py] Web2py expert needed for start-up

2012-07-16 Thread Pepe C
Hi, We have a set of applications on web2py and we are looking for an expert that can help us to operate and develop them. This is a long-term role taking ~10 hours a week, although we do have a bunch of additional work to get done in the next few weeks. Responsibilities include: -

[web2py] Nightly Build (for testers) for windows

2012-06-22 Thread Javier Pepe
Hello I'm trying to use de lastest binary version and get the follow error: Traceback (most recent call last): File web2pypy, line 16, in module zipimport.ZipImportError: can't find module 'gluon' I need use this version to use scheduler. Thanks --

Re: [web2py] Re: Nightly Build (for testers) for windows

2012-06-22 Thread Javier Pepe
Thanks I expect the final version On Fri, Jun 22, 2012 at 3:20 PM, Massimo Di Pierro massimo.dipie...@gmail.com wrote: There are some known issue with the windows nightly build because we are moving from python 2.5 to 2.7. He hope to resolve them soon. On Friday, 22 June 2012 11:53:42

Re: [web2py] web2py interactive console

2012-06-06 Thread Javier Pepe
Hello You need add the -M option to load models. On Wed, Jun 6, 2012 at 6:25 AM, Hassan Alnatour halna...@gardeniatelco.comwrote: Dear ALL , i am trying to use web2py from the terminal now i open the terminal and did this : $ cd web2py $ python web2py.py -S welcome here web2py will

Re: [web2py] Re: Add conditional sub-menu

2012-04-12 Thread Javier Pepe
I was working on a set menu from the database. It's simple and it can be useful. The model is simple, and has a condition to evaluate options when generating the menu items. The evaluation was done using the function 'eval'. Attach model. To manage SQLFORM.grid use or what you like

Re: [web2py] Re: SQLForm.grid : is it possible to delete multiple rows at once ?

2012-03-23 Thread Javier Pepe
sabsto You can use selectable, for example: selectable = lambda ids: delete(ids) form=SQLFORM.grid(query,selectable=selectable) def delete(ids): to_delete=db(db.tabla.id.belongs(ids)) to_delete.delete() On Fri, Mar 23, 2012 at 9:46 PM, Derek sp1d...@gmail.com wrote: Or you could

Re: [web2py] Re: No models vs. conditional models -- what's the advantage?

2012-03-12 Thread Pepe Araya
With all the post arguing about no models... I'm asking myself: why web2py have models folder if it isn't the best way to do the work? only for background compatibility? what's the reason to load the models every time you make a request? is because the automatic migrations? are only

Re: [web2py] Select Where first letter is A

2012-02-09 Thread Javier Pepe
From manual: http://web2py.com/books/default/chapter/29/6#like,-startswith,-contains,-upper,-lower db.mytable.myfield.startswith('value') On Thu, Feb 9, 2012 at 11:06 AM, Web2Py Freak halna...@gardeniatelco.comwrote: Dear All , How Can i select everything in the table the starts with A

[web2py] SQLFORM.smartgrid PLURALIZE by default!!!!?????

2011-12-18 Thread Pepe Araya
Why pluralize by default!!???! that ONLY work for english language, in spanish isn't so simply like add s for everything. I hate that, is like Rails... please, don't go in the wrong way... can I get my WELL FORMED labels back in some way? thanks.

[web2py] Re: SQLFORM.smartgrid PLURALIZE by default!!!!?????

2011-12-18 Thread Pepe Araya
sorry if my speech is annoying, but it's really irritating. My apologies.

[web2py] Re: [OT] Pycharm 2 is out

2011-12-18 Thread Pepe Araya
Voted

[web2py] problem when upgrade to 1.99.4

2011-12-18 Thread Pepe Araya
Hi, I have this ticket when upgrade to 1.99.4: type 'exceptions.AttributeError' 'NoneType' object has no attribute 'strftime'VERSIONweb2py™(1, 99, 4, datetime.datetime(2011, 12, 14, 14, 46, 14), 'stable')PythonPython 2.7.1: /usr/local/bin/pythonTRACEBACK 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12.

[web2py] Re: problem when upgrade to 1.99.4

2011-12-18 Thread Pepe Araya
sorry, is related with this: db.actividades.fecha.represent = lambda *v, r: v.strftime(*'%d-%m-%Y')

[web2py] Re: problem when upgrade to 1.99.4

2011-12-18 Thread Pepe Araya
thank you very much! my fault. :(

[web2py] Re: book 4th edition in PDF

2011-12-17 Thread Pepe Araya
Work for me. thanks.

[web2py] how to set the id of a textarea of a SQLFORM?

2011-12-17 Thread Pepe Araya
Hello! is possible to set the id of a textarea of a SQLFORM? I have 2 forms on the same page but the textarea of both have the same id... thanks

[web2py] Re: SQLForm.grid - How do I use it properly?

2011-12-04 Thread Pepe Araya
Hi Massimo and all the team! First all: Thanks very much for this feature!I it's really amazing! I have a question: It's possible to call a function after *update* or *edit* that take the id of the record created or updated? (or any other parameter) thanks very much! pepe.

[web2py] Re: SQLForm.grid - How do I use it properly?

2011-12-04 Thread Pepe Araya
the T() helper. regards! pepe.

[web2py] computed field: update and images

2011-11-28 Thread Pepe Araya
Hi!! I have 3 computed fields that call a resize_image function to make 3 versions of a uploaded image. The definition of one of these fields: Field('foto_portada_detalle', 'upload', uploadfolder=request.folder+'static/uploads/actividades', compute=lambda r: resize_image(r['foto_portada'],

[web2py] Re: simulate a sub-domain from localhost?

2011-11-28 Thread Pepe Araya
I think that you can make it through the HOSTS file of your system 127.0.0.1:8000 site1.web2py.local 127.0.0.1:8000 site2.web2py.local

[web2py] Re: Checkboxes in SQLFORMs don't show updated values in 1.99.2

2011-11-23 Thread Pepe Araya
some news? Thank you!

Re: [web2py] SQLFORM.grid collection of posts

2011-10-31 Thread Javier Pepe
Nick I'm use the attribute _class to make a button A('Detalle',_class='button',_href='index/detalle/%s' % row.id) This class render a button, same a the buttons on grid. On Fri, Oct 28, 2011 at 11:08 PM, Nik Go nikolai...@gmail.com wrote: It mentions: If you use jqueryui then the links

Re: [web2py] Re: Cascading Drop Down Lists with Ajax

2011-10-08 Thread Pepe Araya
Great! thank you!! On Fri, Oct 7, 2011 at 11:04 AM, Omi Chiba ochib...@gmail.com wrote: Pepe, It's up now. Thank you for letting me know. My web2py version was back to 1.98.2 and all app was gone... I don't know why. I deployed the new version 1.99.2 and re-create the app from slice

[web2py] Re: Cascading Drop Down Lists with Ajax

2011-10-07 Thread Pepe Araya
hi! the demo site is down :(

Re: [web2py] Re: Overriding Grid/Smartgrid's 'Edit/Delete/View'

2011-10-06 Thread Javier Pepe
Hello Along with the question of Johann, you can add new buttons to the grid / SmartGrid, because the links are render as links, and not as buttons. Thanks On Thu, Oct 6, 2011 at 9:36 AM, apple simo...@gmail.com wrote: You can add your own buttons using: links = [lambda row:

[web2py] Field compute= and make thumbnail

2011-09-26 Thread Pepe Araya
Hello, I have a table where only store images related to x Article. db_define_table('images', Field('original_image', 'upload'), Field('thumb_image', 'upload') Is efficient even, possible to make 'thumb_image' Field a computed Field? Something like: Field('thumb_image',

Re: [web2py] Re: Field compute= and make thumbnail

2011-09-26 Thread Pepe Araya
oh! thanks very much! I'll try pepe On Mon, Sep 26, 2011 at 3:30 PM, pbreit pbreitenb...@gmail.com wrote: Here's what I do. Seems to work. Field('image', 'upload', uploadfolder=request.folder+'static/uploads', requires=IS_EMPTY_OR(IS_IMAGE())), Field('image_display

[web2py] Re: file locations once web2py is deployed on fluxflex

2011-09-24 Thread Pepe Araya
Hi, I have same problems here. can someone record a step by step screencast? when I clone the repo, I only get one folder and 4 files: public_html dispatch.fcgi icon.png README tmp_fb_pw how I can to add one app? Thanks so much!

Re: [web2py] Re: file locations once web2py is deployed on fluxflex

2011-09-24 Thread Pepe Araya
thank you so much!

[web2py] define represent in a Controller

2011-08-31 Thread Pepe Araya
Hi! I really can't get this done, please, any help is welcome. Consider that I have this tables: # models/db.py # db.define_table('auth_user' ... ) db.define_table('estados_postulacion', Field('nombre'), Field('descripcion'), format='[%(id)s] %(nombre)s')

Re: [web2py] define represent in a Controller

2011-08-31 Thread Pepe Araya
Thanks Bruno! I'm doing something wrong: *my controller*: def index(): db.postulaciones.estado_postulacion.represent = lambda r:db.estados_postulacion[r].nombre lista_postulaciones = db(db.postulaciones.postulante == db.auth_user.id).select() return dict( lista_postulaciones =

Re: [web2py] define represent in a Controller

2011-08-31 Thread Pepe Araya
I get this error: AttributeError: 'str' object has no attribute 'represent'

Re: [web2py] define represent in a Controller

2011-08-31 Thread Pepe Araya
In that way it not work, but I tried this: {{for postulacion in lista_postulaciones:}} {{represent =*db.postulaciones.estado_postulacion.represent *}} tr td{{=postulacion.postulaciones.id}}/td

Re: [web2py] define represent in a Controller

2011-08-31 Thread Pepe Araya
Thanks! I'm very grateful for your help! I have only one more question: in which cases is right to define this in the controller? You says: you can define a represent in controller before creating the table or form. db.table.field.represent = lambda . that is for Table and Form Helpers?

Re: [web2py] 1.96.3 is OUT

2011-06-05 Thread Pepe Araya
In webfaction, I did a fresh install using their install script ( https://wiki.webfaction.com/wiki/Web2py-LatestSource) and I get this error: Traceback (most recent call last): File web2py.py, line 16, in module import gluon.widget File

[web2py] Re: webfaction: Internal Server Error after upgrade to 1.96.2

2011-06-05 Thread Pepe Araya
Massimo, I did a fresh install with the new trunk and this is the traceback: Traceback (most recent call last): File web2py.py, line 16, in module import gluon.widget File /home/pepearaya/webapps/crewcatalyst2/web2py/gluon/__init__.py, line 15, in module from globals import current

Re: [web2py] 1.96.3 is OUT

2011-06-05 Thread Pepe Araya
Sorry, that is a duplicate message of this: https://groups.google.com/d/msg/web2py/f3l_IOcx560/wNLyIfvSj6wJ After your recommendation, I added that line to utils.py and it works but now, after a fresh install with the version in trunk other error appear : (posted here:

Re: [web2py] 1.96.3 is OUT

2011-06-05 Thread Pepe Araya
With that change it works. open('/dev/urandom','wb').write(''.join(chr(t) for t in ctokens)) except IOError: # works anyway thanks!

[web2py] Re: webfaction: Internal Server Error after upgrade to 1.96.2

2011-06-05 Thread Pepe Araya
Quoting Jonathan Lundell: It should be* IOError* (capital E) --- with that change it works.

[web2py] webfaction: Internal Server Error after upgrade to 1.96.2

2011-06-04 Thread Pepe Araya
Hi, my site have an internal server error after upgrade to 1.96.2 Webfaction support say: Your app is trying to wrote to /dev/urandom which it will never be able to do: [pepearaya@web136 apache2]$ tail /home/pepearaya/logs/user/error_crewcatalyst.log [Sat Jun 04 01:34:25 2011] [error] [client

[web2py] Re: webfaction: Internal Server Error after upgrade to 1.96.2

2011-06-04 Thread Pepe Araya
Reply 2: open('/dev/urandom','r').write(''.join(chr(t) for t in ctokens)) In this line, you are attempting to open /dev/urandom for reading, and then are attempting to write to it. Instead, you need to read the data from /dev/urandom, and then open a new file for writing to write your

[web2py] Re: webfaction: Internal Server Error after upgrade to 1.96.2

2011-06-04 Thread Pepe Araya
Thanks Massimo! I'll give a try

[web2py] Re: webfaction: Internal Server Error after upgrade to 1.96.2

2011-06-04 Thread Pepe Araya
Massimo, bad news :( it not work this is the log: [Sat Jun 04 17:41:31 2011] [error] [client 127.0.0.1] File /home/pepearaya/webapps/crewcatalyst/web2py/gluon/html.py, line 29, in module [Sat Jun 04 17:41:31 2011] [error] [client 127.0.0.1] from utils import web2py_uuid, hmac_hash [Sat

Re: [web2py] 1.96.3 is OUT

2011-06-04 Thread Pepe Araya
I have the same problem as i mentioned here: https://groups.google.com/d/topic/web2py/e2KcQDYcPD0/discussion

Re: [web2py] 1.96.3 is OUT

2011-06-04 Thread Pepe Araya
did you installed it with the webfaction's script?

Re: [web2py] 1.96.3 is OUT

2011-06-04 Thread Pepe Araya
In webfaction, I did a fresh install using their install script but i get this error: Traceback (most recent call last): File web2py.py, line 16, in module import gluon.widget File /home/pepearaya/webapps/crewcatalyst2/web2py/gluon/__init__.py, line 15, in module from globals import

Re: [web2py] 1.96.3 is OUT

2011-06-04 Thread Pepe Araya
now it works ok! thanks!!

[web2py] Re: Embedding web2py

2011-05-19 Thread Pepe Araya
maybe this help: http://www.appcelerator.com/products/titanium-cross-platform-application-development/

[web2py] Pusher - Real-time push

2011-04-22 Thread Pepe Araya
Hello! Has anyone used this with web2py? can you share your experience? http://www.pusher.com

Re: [web2py] Extend Field Type upload to a CDN

2011-04-17 Thread Pepe Araya
Hi, any news about? I'm very interested regards!

[web2py] web2py HL7: where come from key:descriptions of some tables?

2011-03-04 Thread Pepe Araya
Hello, I'm trying to understand the Web2py HL7 App and I don't understand where come from the key:descriptions of some tables. e.g: social_history Table id: 1 key: 229819007 description: Tobacco use and exposure (observable entity) Not available Smoking is the key arbitrary or is a

  1   2   >