Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

HTL data-sly-test

Avatar

Level 3

Is there a way to test if listChildren will return anything? Something along the line of: <sly data-sly-test=${item.listChildren.size > 0} />

6 Replies

Avatar

Employee

You can call any method that has no arguments in data-sly-test.

In your case check if your item has these methods.

Avatar

Level 3

Thank you all! Your answers pointed me to a solution. I was able to test whether or not the item had children this way:

<sly data-sly-test=${item.listChildren.hasNext} />

Avatar

Community Advisor

This one did not work for me though the original check for item.children.size == 0 worked well

Avatar

Community Advisor

Just an update the data-sly-test="${item.children.size == 0} and data-sly-test="${item.children.size > 0} worked for me as intended.