From 84e0a7994d22fa5be5e5f8ae91ca4990ef495afd Mon Sep 17 00:00:00 2001
From: chenjingwu <chenjingwu@prec-tech.com>
Date: 星期五, 24 五月 2024 16:49:53 +0800
Subject: [PATCH] 1
---
force-app/main/default/lwc/lexLookupLwc/lexLookupLwc.js | 20 ++++++++++++++++++--
1 files changed, 18 insertions(+), 2 deletions(-)
diff --git a/force-app/main/default/lwc/lexLookupLwc/lexLookupLwc.js b/force-app/main/default/lwc/lexLookupLwc/lexLookupLwc.js
index 802c7e8..319c137 100644
--- a/force-app/main/default/lwc/lexLookupLwc/lexLookupLwc.js
+++ b/force-app/main/default/lwc/lexLookupLwc/lexLookupLwc.js
@@ -4,7 +4,7 @@
* @Author: chen jing wu
* @Date: 2023-05-25 13:59:44
* @LastEditors: chen jing wu
- * @LastEditTime: 2023-05-30 14:54:30
+ * @LastEditTime: 2023-09-27 15:30:05
*/
import { LightningElement, track, api } from 'lwc';
import getRecordsByName from '@salesforce/apex/lexLookupController.getRecordsByName'
@@ -19,6 +19,7 @@
@track
selectedValue = "";
error;
+ @track
recordselected = false;
@api
iconname;
@@ -41,12 +42,15 @@
})
}
- renderedCallback(){
+ connectedCallback(){
+
if(this.initValue != '' && this.initValue != undefined && this.initValue != null){
this.recordselected = true;
this.selectedValue = this.initValue;
}
}
+
+
@api
letDisabledTrue(){
this.recordselected = false;
@@ -64,9 +68,18 @@
//Method to clear search list and show selected value.
@api
clearSelection() {
+ console.log('qwer');
this.recordselected = false;
this.selectedValue = "";
this.recordsList = undefined;
+ const customEvent = new CustomEvent('buttonclick', {
+ bubbles: true, // 浣夸簨浠跺啋娉�
+ composed: true // 浣夸簨浠跺彲浠ヨ法shadow boundary浼犳挱
+ });
+ this.dispatchEvent(customEvent);
+ }
+ dontClose(event){
+ event.preventDefault();
}
//Method to pass selected record to parent component.
@@ -84,4 +97,7 @@
});
this.dispatchEvent(selectedEvent);
}
+ clear(){
+ this.recordsList = undefined;
+ }
}
\ No newline at end of file
--
Gitblit v1.9.1