| | |
| | | } |
| | | |
| | | connectedCallback(){ |
| | | console.log('LexLookup accountValue = ' + this.accountValue); |
| | | console.log('isDisabledForDealerText = ' + this.isDisabledForDealerText); |
| | | } |
| | | |
| | |
| | | handleClearSelection() { |
| | | this._curSelection = []; |
| | | this._hasFocus = false; |
| | | this.accountValue = ''; |
| | | // Process selection update |
| | | this.processSelectionUpdate(true); |
| | | } |
| | |
| | | } |
| | | |
| | | get getInputValue() { |
| | | if(this.accountValue != ''){ |
| | | return this.accountValue; |
| | | } |
| | | if (this.isMultiEntry) { |
| | | return this._searchTerm; |
| | | } |
| | | if(this.accountValue != ''){ |
| | | return this.accountValue; |
| | | } |
| | | return this.hasSelection() ? this._curSelection[0].title : this._searchTerm; |
| | | } |
| | | |