Has anyone ever attempted to incorporate a view within a using data tables? Currently, I am loading the data and dataTables through didInsertElement. Within each record, I am adding an "edit" and "delete" button inside a td so users can click to edit or delete the record, which redirects them to a new page. This is currently achieved by inserting HTML in the model and sending the event to a controller. However, as my understanding of Ember has evolved, I believe a more efficient way to do this would be to have individual views triggered for the column that contains the "edit" and "delete" options.
Is there anyone who has experience with this approach? The challenge I face is that implementing it in the templates may result in an unknown number of columns every time the application loads, depending on the API hook from which I am fetching the data.