Create new record using data from selected row
Create new record using data from selected row

I have a use case that seems to fit between the functionality of the New and Edit buttons in Editor, I wasn't sure if anyone could point me in the right direction.
I want to select a record and click a button that allows me to create a new record whose data is prepopulated from the selection. For instance, if the values for a row's columns A, B, and C are 1, 2, and 3, I want to select that row and have a pop-up akin to the Editor pop-up that is already populated with the 1, 2, and 3 values. I can then change the 3 to a 4, click save, and now have two rows - 1,2,3 and 1,2,4.
Is this functionality already built into Editor, or has anyone had any success building something similar?
This question has an accepted answers - jump to answer
Answers
Perhaps the "duplicate" facility is what you want.
https://editor.datatables.net/examples/api/duplicateButton.html
Beautiful! I must have just been searching using the wrong terminology. Thank you so much!