You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the nbWindow components to enable the user to do multitasking while he's working, so my nbWindow can be a form or things that they can reduce if they need to do something else fast. But the main problem of that is I can't pass anything the close action, so actually I've got to refresh my datatables if they're doing an edit or an add and so...
Expected behavior:
That would be great if on the close action we could pass a data like you did for the NbDialog
Steps to reproduce:
Related code:
DIALOG EXAMPLE :
this.dialogService.open(DialogNamePromptComponent)
.onClose.subscribe(name => name && this.names.push(name));
EXPECTED :
this.windowService.open(DialogNamePromptComponent)
.onClose.subscribe(name => name && this.names.push(name));
Issue type
I'm submitting a ... (check one with "x")
Issue description
Current behavior:
I'm using the nbWindow components to enable the user to do multitasking while he's working, so my nbWindow can be a form or things that they can reduce if they need to do something else fast. But the main problem of that is I can't pass anything the close action, so actually I've got to refresh my datatables if they're doing an edit or an add and so...
Expected behavior:
That would be great if on the close action we could pass a data like you did for the NbDialog
Steps to reproduce:
Related code:
Other information:
npm, node, OS, Browser
Angular, Nebular
The text was updated successfully, but these errors were encountered: