Access static field in polymer expression

152 Views Asked by At

It is possible to access static fields in dart polymer expression?

In my template I need to access some static value from a know class, how can I access it in polymer expression?

1

There are 1 best solutions below

3
On BEST ANSWER

I don't know of a way to access it directly. I think you need to create a getter to the Polymer element where you want to use the value.

You can also create a mixin that provides access to the static values.

Another solution is to create a component that provides access to the static values and use it like

<polymer-element name="xx-yy">
  <template>
    <my-const id="my-const"></my-const>
    <template if="{{$['my-const'].isDebug}}">
      some debug output
    </template>
  </template>
</polymer-element>