binxie
2023-06-26 dd004276162a2bf9d042ff0aaa569dc30a95d827
force-app/main/default/lwc/customOutboundCountComp/customOutboundCountComp.js
@@ -5,7 +5,6 @@
    @api recordId;
    @api count;
    
    connectedCallback(){
        console.log('enter CustomOutboundCountComp');
        console.log('isDisable = ' + this.isDisable);
@@ -14,16 +13,18 @@
    }
    outboundCountBlur(event){
        console.log('outboundCountBlur')
        console.log('outboundCountBlur');
        this.count = event.target.value;
        this.dispatchEvent(new CustomEvent('outboundcount', {
        this.dispatchEvent(
            new CustomEvent('outboundcount', {
            composed: true,
            bubbles: true,
            cancelable: true,
            detail: {
                data: { count: this.count, recordId: this.recordId }
            }
        }));
            })
        );
    }
}