Copy repeater text value into a input field

I’m having trouble trying to copy the data from my repeater text feel that is connected to a database. I would like to copy that feel into one of my pre-made forms, I’m not good at coding but I use this code and it is copying the field but is only copying the sample data any help will be greatly appreciated

$w.onReady( function() {
$w("#input4").value = $w("#text26").text;
} );

Maybe copy when the repeater is ready?

So that it has time to update the field.

Hope it works.

I try adding a delay but is still only showing the sample data

$w.onReady( function() {setTimeout(function(){
$w("#input4").value = $w("#text26").text;
}, 2000);
} );

But wouldn’t the need to input the data first?

Put the code below the submit button code.

Yes, but how can it copy the data, if it is not yet given to the input?