Re: [web2py] 'Row' object has no attribute powerTable

2012-12-17 Thread FERNANDO VILLARROEL
Dear Bruno. Yes works fine without powerTable The problem occur when i use powerTable. Regards --- On Mon, 12/17/12, Bruno Rocha rochacbr...@gmail.com wrote: From: Bruno Rocha rochacbr...@gmail.com Subject: Re: [web2py] 'Row' object has no attribute powerTable To: web2py@googlegroups.com Date

Re: [web2py] 'Row' object has no attribute powerTable

2012-12-17 Thread FERNANDO VILLARROEL
VILLARROEL fvillarr...@yahoo.com wrote: From: FERNANDO VILLARROEL fvillarr...@yahoo.com Subject: Re: [web2py] 'Row' object has no attribute powerTable To: web2py@googlegroups.com Date: Monday, December 17, 2012, 11:02 AM Dear Bruno. Yes works fine without powerTable The problem occur when i use

Re: [web2py] 'Row' object has no attribute powerTable SOLVED

2012-12-17 Thread FERNANDO VILLARROEL
VILLARROEL fvillarr...@yahoo.com Subject: Re: [web2py] 'Row' object has no attribute powerTable To: web2py@googlegroups.com Date: Monday, December 17, 2012, 3:46 PM Dear. Why when i run: def test():    return db(db.pagos.id_clientes==session.cliente_id).select(db.pagos.id,db.pagos.fecha,db.pagos.monto

Re: [web2py] 'Row' object has no attribute powerTable SOLVED

2012-12-17 Thread Bruno Rocha
: From: FERNANDO VILLARROEL fvillarr...@yahoo.com Subject: Re: [web2py] 'Row' object has no attribute powerTable To: web2py@googlegroups.com Date: Monday, December 17, 2012, 3:46 PM Dear. Why when i run: def test(): return db(db.pagos.id_clientes==session.cliente_id).select(db.pagos.id

[web2py] 'Row' object has no attribute powerTable

2012-12-16 Thread FERNANDO VILLARROEL
Dear All. I am trying to use powerTable plugin, but i am receiving the following error: return ogetattr(self, key) AttributeError: 'Row' object has no attribute 'pagos' My code: @auth.requires_login() def pagos():

Re: [web2py] 'Row' object has no attribute powerTable

2012-12-16 Thread Bruno Rocha
what happens if you just return the Rows without using powerTable, it works? def test(): return db(db.pagos.id_clientes==session.cliente_id).select(db.pagos.id ,db.pagos.fecha,db.pagos.monto,db.pagos.comments,orderby=~db.pagos.fecha) --