Help appreciated.
Thanks in advance.
1 respuesta
'oninput' event will be fired only when a user enters anything into that textfield. In my understanding, this.isAllSigned is a @track'ed property, right? Try the following:
get isQuestionTextfieldEnabled() {
if (this.isAllSigned) { return 'disabled'; }
return '';
}
<input type="text" ... disabled={isQuestionTextfieldEnabled}">