I would add it to loadTableView(), since you invoke it in many places.
Why do you create a new model in destructor? You won't be able to delete it and you'll get a memory leak. Same thing in closer().
You have a lot of duplicated code. For example on_matthewRB_toggled(), on_joshuaRB_toggled() and on_vacationsRB_toggled() are exactly the same and you can use just one method instead. Also compare on_settingsPB_clicked() and Init().
Bookmarks