Sightly AEM -size or length of array in siglty | Community
Skip to main content
Prince_Shivhare
New Participant
September 14, 2017
Solved

Sightly AEM -size or length of array in siglty

  • September 14, 2017
  • 3 replies
  • 6486 views

I want get the length or size of my list in aem sightly,so is there any property like size to get the total count of elements in the list?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Feike_Visser1

you can use the methods that you have in Java for the concerned object.

Like

${ myArray.length}

${ myList.size }

3 replies

VeenaVikraman
New Participant
September 14, 2017

Yes Prince. , Please try the way Feike has mentioned here.

Feike_Visser1
Feike_Visser1Accepted solution
Employee
September 14, 2017

you can use the methods that you have in Java for the concerned object.

Like

${ myArray.length}

${ myList.size }

AnkurAhlawat-1
New Participant
September 14, 2017

Modifying my comments:-

Very well said by Feike , i tried by creating a small sample in my local and able to get size of list.

${<useClassObject>.<ListMethodName>.size}

For Example:-

In java:-

public List getTestList() {

return testList;

}

In HTML:-

<sly data-sly-use.useClassObj = "com.ups.components.use.ArrayListClassUse">

Size of List:- ${useClassObj .testList.size}

</sly>

Hope it helps. Thanks Feike for quick response.