Solved
Order of Items at Sling context site configuration
Hi Team,
We are using Sling context aware config. But we want to arrange order.
for eg:
@Property(label = "Enter the button Label", description = "Button Label")
String buttonLabel();
@Property(label = "Enter the title1, description = "Enter the title1")
String title2();
@Property(label = "Enter the title, description = "Enter the title")
String title();
@Property(label = "Enter the title1, description = "Enter the title1")
String title1();
When we deploy squence is random. How to show title as first attribute then title1, title2, buttonlabel?
TIA
Naina