InterviewSolution
Saved Bookmarks
| 1. |
What do you understand about extending a component? |
|
Answer» EXTENDING a COMPONENT occurs when you want to construct a NEW component that does not override a BASE component but has the same characteristics as the original so that you may build upon it. When extending a component, you MUST set the component's "sling: resourceSuperType" to the base component you want to keep. |
|