Skip to main content
Learner SFDC 님이 #Mobile에 질문했습니다
I have a flow where once the signatures are done after filling the input fields the input fields has to be disabled.iam attaching the html & Js code SS.

 

Help appreciated.Hi All, Need help on LWC Like Belowthis is the code for JS file

 

Thanks in advance.
답변 1개
  1. 2021년 2월 25일 오후 3:02

    '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}">

0/9000