"There is no current item"

Hi!
I tried copy some item’s properties from one database to another.
Sometimes it was working perfect. But recently I received the next error message:
“An error occurred in one of datasetReady callbacks DatasetError: There is no current item”

That’s how my code began:
$w.onReady( function () {
$w( ‘#dataset1’ ).onReady(() => {
$w( ‘#dataset2’ ).onReady(() => {
let insertFrom = $w( ‘#dataset1’ ).getCurrentItem();
$w( ‘#dataset2’ ). new ();
$w( ‘#dataset2’ ).setFieldValue( “country” , insertFrom.country);
});

I would be grateful for help! :slight_smile:

Hey,

I tested your code on a page with two datasets and it works for me.

Please make sure that the dataset is connected to a collection and that collection currently has items in it.

If it is connected already and does have items in it can you send us a screenshot of the collection that the dataset is connected to and the dataset settings. As well as the error message you receive in the console.

Thanks!

Dara | Corvid Team

What about 2 pages?
In the first I created the “dataset1”. Which I insert properties for the first item.
In the second page I created the “dataset2”, and of course reminded the first dataset.
So probably there’s has to be items in it.

Thanking for answer.

Hi :raised_hand_with_fingers_splayed:

Where do you get this code, Preview mode or on the live site? What’s your site URL? Please provide more information in order for us to be able to help better.