| 1. |
What Is Extending A Component? |
|
Answer» Extending a COMPONENT is when you want to create a NEW component that will not override a base component, but will have the same FEATURES as the original so that you can CHANGE or build upon that component. In order to extend a component, you must set“SLING:resourceSuperType” of the component to the base component you would like to extend. By doing this, you will inherit everything from the base component. Extending a component is when you want to create a new component that will not override a base component, but will have the same features as the original so that you can change or build upon that component. In order to extend a component, you must set“sling:resourceSuperType” of the component to the base component you would like to extend. By doing this, you will inherit everything from the base component. |
|