Unfortunately it doesn't work, I have only one form and put:
$this->form_builder->use_form_tag = FALSE;
$this->form_builder->form_action = 'some/action';
// $this->form_builder->form_attrs = array ('method' …
In my advanced module I used a couple of lines and works fine:
$this->form_builder->display_errors = FALSE;
$this->validator->register_to_global_errors = TRUE;
In admin form dashboard appears: 1. ...
In view I use: <?php echo $form; ?>
In controler: $vars['form'] = $this->form_builder->render();
$this->fuel->admin->render('_blocks/module_create_edit', $vars, '', MESSAGES_FO…
Continuing with the form, I have a 2 new questions:
1. How can I set attrs into form tag, I tried with:
$this->form_builder->set_fields($fields);
$this->form_builder->form_attrs = 'method="post" action="some/url" enctype="multipart/form…