always figure out the solution right after posted the question, the solution is here:
function my_acf_update_value( $value, $post_id, $field )
{
wp_update_post(array(
'ID' => $value,
'post_parent' => $post_id
)
);
return $value;
}
// acf/update_value/type=image - filter for a specific field based on it's type
add_filter('acf/update_value/type=image', 'my_acf_update_value', 10, 3);