Multiple choice technology enterprise content management

If you want to extend a component defined in the webtop application layer, you must always copy the elements you want to change from the webtop layer to the custom layer.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Extending components from the webtop layer does not always require copying elements to the custom layer. The framework likely provides alternative extension mechanisms such as inheritance, references, or override methods that don't necessitate direct copying, allowing for more flexible and maintainable customizations.

AI explanation

Thanks to layer inheritance, the custom layer only needs to contain the specific elements you actually want to change — anything you don't override is automatically inherited from the webtop (or lower) layer. So you don't need to copy the entire component, just the parts you're customizing, making the blanket 'always copy everything' statement false.