Docs

Documentation versions (currently viewingVaadin 14)

You are viewing documentation for an older Vaadin version. View latest documentation

Detecting Mappings in Components

Note
Use Lit templates instead
Lit templates are recommended. Polymer templates are available in the next long term supported Vaadin version (LTS), but they are deprecated.

You can detect whether a component is part of a Polymer template using the isTemplateMapped method.

This is useful if you want to execute custom logic depending on whether the component was mapped in a template (injected via the @Id or @Uses annotations) or created directly using one of its constructors, for example.

Example: Calling the isTemplateMapped method in MyComponent.

@Tag("div")
public class MyComponent extends Div {

  public MyComponent() {
    if (!isTemplateMapped()) {
      getElement().getStyle().set("color", "red");
    }
  }
}
  • By default, the component only sets a style when the component is not part of a template.

See Binding Components from a PolymerTemplate for more about To @Id mappings.

482D6016-CACF-448E-B3A1-D37928E3AC65