I got this function in my core component:
core
isValid(value: any) { // Do some stuff and return somethin
You need to subscribe on the event emitter to get the value:
this.onBeforeAdding.emit(value || true); this.onBeforeAdding.subscribe(isValid => { if (isValid) { // Do stuff } });