hello i have this in a view
<li>{{=A(amostra,_href=URL(r=request,*c='amostra',f='get',*
vars={'amostra':amostra,*'amostra_detalhe':Amostra[amostra]*}))}}
Amostra is a dictionary
amostra is every element in Amostra
every amostra of Amostra is a dictionary
in this view i iterate over Amostra[amostra]['param1....paramN], etc with no
problem.
in the controler *amostra*, function *get* i do
print type(request.vars['amostra_detalhe'])
and i get <'str'> and not <'dict'>
what the hell,
this way i cannot iterate over the params and get this error
*string indices must be integers*
Please help me.i´m stuck
thank you
António