Hi guys,
In order to avoid displaying the placeholder texts before data fetching, I assign an empty string to all texts on the page (on page load) and programmatically populate the text-boxes. To exclude the header & footer texts I use this code:
let allTexts = $w("Text");
allTexts.forEach(e => {if(!e.global){e.text = "";}})
Everything works fine as expected, but I’d like to hear your approach. Maybe there’s a better way that I’m not aware of? What do you do, in order to hide the placeholder texts?