Thank you for contacting Toolset support. I am sorry but this is not possible using built-in Toolset features
But if you want to give it a try with custom solution then please note this requires a custom code or modifications which falls into Custom coding & custom development and it is out of support policy (https://toolset.com/toolset-support-policy/). So we recommend to contact Toolset recommended service providers to further discuss the custom approach. We have some recommended list of service providers here if you would like to take a look: https://toolset.com/consultant/
I am sorry if you are not satisfied with my answer. May be I am not getting your requirement, can you please point me to the link where you see this in Toolset blog.
add_action('cred_save_data', 'prefix_cred_save_data_action', 10, 2);
function prefix_cred_save_data_action( $post_id, $form_data ){
if ($form_data['id']==123){ //do the following code only if the CRED form ID is 123, adjust this to your CRED form ID
if (!empty($_POST['child_dropdown_1'])){ //if child is selected
$child_id = $_POST['child_dropdown_1'];
add_post_meta($child_id, '_wpcf_belongs_parent_id', $post_id, true); //save the ID of the current post in child field
}
}
}