I have a very simple page that is to display a table of information from a dataset. I will eventually be doing much more with it, but need the dataset to load in preview to be able to code and test as I go.
There is a dataset.
The dataset is added to the page.
In preview, it never populates.
But in live it does.
I have confirmed both the sandbox and live datasets are populated with information.
Troubleshooting steps taken:
I placed a couple of console log outputs to catch the OnLoad of the page and the Dataset.
$w.onReady(function () {
// TODO: write your page related code here...
console.log("page loaded");
$w('#dataset1').onReady( () => {
console.log("dataset loaded");
});
});
In production both console log events are triggered.
Production:
Preview:
It appears as if the dataset never actually finishes loading in preview.
Live page is here: https://dschnieders21.wixsite.com/mysite-1/add-new-provider
Not sure how to share the development/preview page here.