According to the CGI::Formbuilder docs:
method - the type of CGI method to use, either post or get. Defaults to get if nothing is specified.

According to the Catalyst::Controller::FormBuilder docs, changing it is as easy as:

$self->formbuilder->method('post');

I actually *want* to use the get method, but there is nothing I can do to actually get it (pun intended) except to specify the HTML manually in the form. So:

1) method: get # in the .fb file
2) method => 'get' # in Controller::FormBuilder config new()
3) $self->formbuilder->method('get') # in the controller method
4) or not specifying method anywhere

are all comprehensively ignored. FormBuilder has decided I'm having post and that is that! I really hate FormBuilder :-(

[how's that FormValidator plugin coming along BTW?]
--
Richard Jones


_______________________________________________
List: [email protected]
Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/

Reply via email to