buli
2023-05-23 07390e2fcb4adf27c928335bf27ae7939c5a80ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * @Description: 
 * @version: 
 * @Author: chen jing wu
 * @Date: 2023-04-27 11:38:36
 * @LastEditors: chen jing wu
 * @LastEditTime: 2023-05-08 10:25:31
 */
import { LightningElement, api } from 'lwc';
export default class LexInputLookupCell extends LightningElement {
    @api record;
    @api fieldName;
    @api apiName;
    @api type;
    @api fieldType;
    @api disable;
    @api required;
    value;
    label;
    connectedCallback() {
        this.value = this.record[this.fieldName];
        this.label = this.fieldName;
    }
    get isRequired(){
        return this.required;
    }
 
    handleInputChange(event) {
        this.value = event.target.value; 
    }
    get isDisable(){
        if(this.disable == true){
            return true;
        }else{
            return false;
        }
    }
    getSearchResult(){
 
    }
 
    @api
    inputValue() {
        return { value : this.value, field: this.field };
    }
    get isLookup() {
        if(this.fieldType)
        {
            return this.fieldType.toLowerCase()=='lookup';
        }
        return false;
      }
}