Thank you. This works with my template fields but not my has_many field - it no longer displays correctly
public $has_many = array('genres' => 'genres_model');
...
$fields['genres'] = array('order' => 2);
Ok I figured it out! Probably a better way but it works.
function on_after_save($values) { parent::on_after_save($values); $new_tracklisting = $_POST['tracklisting']; //delete old tracks $this->db->wher…
Thank you very much. I have managed to display the track listing in the template form and I'm able to add new/delete tracks. I've implemented the on_after_save, however I'm not sure where to begin saving the update track information in the track t…