can you suggest a nice looking solution for easly introduce new buttons
in grid and smartgrid when I'm in edit mode?
This are an example of a button to introduce:
my_extra_element_1 = FORM(INPUT(_type="submit", _value=T('Share data')),
_action=URL('share_data_with_users', args=table_id))
I would like to align with other button such as back, edit or view
At the moment I use to do something like this:
orm.components += [my_extra_element_1]
but it's not a nice solution expecially if I got more than one element
to introduce
Thanks a lot
Cheers
Manuele