Mass Submit from a Table

Hey there,
New train of thought… Is there anything out there like a mass submit? I know GWiz has nested forms, and maybe that is the eventual goal, but I was thinking more of a table (or list field) with rows. The user inputs the data, add when they submit it, it submits each row as an entry of a given form.

Lets say the Parent form, which is just a List field and the columns are the fields you want to mass create for the Child form. Is there is way to create entries for another form within another form like nested? Maybe using the after_submission with add_entry in a foreach?

Something like…

add_action( 'gform_after_submission', 'after_submit', 10, 2 );
function after_submit($form){
    foreach($entries as &$entry){
          //GET TABLE ROW AS $STUFF = $ENTRY
   function add_entry(  $entry ) {
             //$STUFF
        }
    }
}

Thoughts?