I have a Java Polymer Component. It has a custom styling property (Example: --paper-icon-button-ink-color).
How do we set the value of this property from Java?
Artur Signell:
If I remember correctly, the first argument to callFunction must be the method name only. Parameters can then be specified as additional arguments
Yes, you are right. I passed as additional parameters and it’s not showing any errors.
However, it is not getting effected. I can see that it’s being passed to the client (so, this is not a problem in Flow).
If I do getElement().getStyle().set(..., ...), I can see that the DOM is getting updated.