to hide something , you can set it as readable = False, or keep a list of
fields to display and pass it to SQLFORM as a parameter.
As for the arrangement, try to create a small function to serialize the
form in the view:
def myform(form, style='default'):
...........
return DIV()
and call it directly in the template based on your parameters.....
{{=myform(form,mystyle)}}
it's currently the most flexible way to do what you're asking.
Il giorno venerdì 25 maggio 2012 18:00:26 UTC+2, orsomannaro ha scritto:
>
> On 25/05/2012 16:08, Massimo Di Pierro wrote:
> > You need to do it using jquery.
>
> Thank you Massimo. And for the other things? There is no way?
>