This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//----"ticketdelete" is the event name. | |
//----"param" is the parameter name sent through the event | |
CustomEvent evt = new CustomEvent("ticketdelete",{param: 'any value'}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CustomEvent evt = new CustomEvent( | |
"ticketdelete",{detail: this.dataToDisplay.Id}); |