On Tue, Oct 25, 2011 at 7:40 PM, Sergio Gattas <gattas...@gmail.com> wrote:
> I tried to implement Tabs Class in fa.jquery following the example in
> http://www.gawel.org/docs/fa.jquery/modules/fa.jquery.forms.html
> but when i render the tabs receive this error: AttributeError:
> _request
>
I've fixed that in the github repository:
https://github.com/FormAlchemy/fa.jquery
fa.jquery has not been released since a long time... The "problem" is
that fa.jquery now use fanstatic to serve js/css resources. It work
fine with pyramid but I need to check/backport that stuff so it can
work with pylons too.
Regards,
Gael
> --
> You received this message because you are subscribed to the Google Groups "FormAlchemy" group.
> To post to this group, send email to forma...@googlegroups.com.
> To unsubscribe from this group, send email to formalchemy...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/formalchemy?hl=en.
>
>
You never use a request here. You must set it.
tab._request = request is ok
tab.bind(model, request=request) work too but bind your tab to only one model
You need to mark it as safe. ${form.render()|n} in mako if I remember well