You want to invert the order of display of components added to parsys provided out of the box. Recently added components always have to display on top. While implementing the new parsys component, which two options are valid? (Choose two).
You want to invert the order of display of components added to parsys provided out of the box. Recently added components always have to display on top. While implementing the new parsys component, which two options are valid? (Choose two).
To achieve the requirement of inverting the order of components in a parsys, one valid approach is to copy the parsys component and all its contents from /libs/foundation/components/parsys to /apps/foundation/components/parsys and modify the applicable JSPs, ensuring the complete functionality is maintained. Another valid approach is to create a new parsys component under /apps/<projectid>/components/content/myparsys and apply the property sling:resourceSuperType=foundation/components/parsys, and then modify the JSP as applicable to achieve the desired behavior. These options ensure both extensibility and maintain compatibility with the out-of-the-box foundation components.
I think it will be B, C