We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
this.$.*
dom-if
If I have the following code:
<template is="dom-if" if="[[editable]]"> <paper-input id="input"></paper-input> </template>
but this.$.input is always undefined even if editable === true. I found a workaround using this.$$('#input').
this.$.input
undefined
editable === true
this.$$('#input')