Different rows in the same Form...

Hi,
You are right about this:
$w(" #dataset1 ").onReady
This is the correct one:

$w.onReady( () =>{ 
    $w("#dataset1").onReady(() => { 
        $w('#dataset1').setFieldValue('title', $w('#text11').text); 
    }); 
});

Roi