I’m one of the many trying to conditionally collapse elements in a repeater on a dynamic page. For some unknown reason, I can’t get my function to trigger on the empty text field.
My text field is within a container box and if the text element is empty, I would like to collapse both the text and the container box. Note that the code does seems to execute if I try to compare non-blank values to something loaded in the database field (such as comparing “dog” to the same loaded in the database, but I don’t seem to have success detecting an empty field???
Have read the various attempts on this subject and have lifted and tried many variations - here is what I have tried in terms of the comparison
=== undefined
=== “”
=== ‘’
Also tried the if (!itemData.description)
Here’s my code with just one of the variations I’ve tried:
export function repeater1_itemReady($w, itemData, index) {
$w( “#repeater1” ).onItemReady(() =>{
if (itemData.description === undefined) {
$w( “#text85” ).collapse();
$w( “#box5” ).collapse();
}
});
//Add your code for this event here:
}
Would greatly appreciate it if someone could take a look and explain what I must be missing or why I would see different behavior when I define a string as a non-blank.
Deborah