Here we go again,
Total Items in my Live=579
Total items being count & loaded in the site = 578
The code is this:
$w("#dataset1").onReady( () => {
console.log("The dataset is ready");
$w("#table1").onDataChange( (event) => {
var msg2 = ('Data loading...');
let count = $w("#dataset1").getTotalCount();
console.log("Total items count is",count)
$w("#counter").text = String(count);
if ($w("#counter").text === "1") {
$w("#text25").show();
$w("#text12").hide();
console.log(msg2)
} else {$w("#text12").show();
$w("#text25").hide();
}})
What am I missing here please?