Change positioning of forms?
I've added additional forms to my model using the $has_many array and template form builder.
How can I change the position of these forms on the page? Currently they are placed at the bottom of the page after all my database fields
Comments
public $has_many = array('genres' => 'genres_model');
...
$fields['genres'] = array('order' => 2);
$fields['genres']['order'] = 2;