[web2py] Grid without consulting database

2015-09-10 Thread Luis Valladares
Hello! I'm trying to use SQLFORM.grid (or something like this) to my website, but this page doesnt have a database because it consumes all the data form a service, so i ask the service for the list of records in a table and i recieve it in json format and transform to dictionary. What i want to

Re: [web2py] grid without

2012-04-02 Thread Manuele Pesenti
Il 02/04/2012 11:06, Johann Spies ha scritto: Use 'deletable=False' in the argurments for the grid. Documented at http://www.web2py.com/books/default/chapter/29/7#SQLFORM.grid-and-SQLFORM.smartgrid-%28experimental%29 Regards Johann Hi Johann, thanks for your replay but that's not what I'm l

Re: [web2py] grid without

2012-04-02 Thread Johann Spies
On 2 April 2012 10:46, Manuele Pesenti wrote: > Hi, > is there an easy way to use grid and smartgrid without the delete botton? Use 'deletable=False' in the argurments for the grid. Documented at http://www.web2py.com/books/default/chapter/29/7#SQLFORM.grid-and-SQLFORM.smartgrid-%28experimenta

[web2py] grid without

2012-04-02 Thread Manuele Pesenti
Hi, is there an easy way to use grid and smartgrid without the delete botton? I mean I want to only use the deleting option from the update form not the botton in the table because in this case no callback function are performed ( http://code.google.com/p/web2py/issues/detail?id=651) I've ha