Replies: 2 comments 1 reply
-
Please use discussion for question related topics. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@Nikola7i I have done this before, and a send this long running process to Hangfire to do it for me. See Hangfire Background Jobs wiki for info on how to integrate Hangfire. From there you can create an endpoint that then enqueues the job with something like Then create a form with parameters (like your start and end dates). YourService.QueueTheJob({
StartDate: this.form.StartDate.value,
EndDate: this.form.EndDate.value
}, response => {
Q.notifySuccess("Successfully triggered");
this.dialogClose();
}); Hope that helps! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I need help about situation when I need to call new dialog with date picker before batch process. Date should be passed to batch record.
Anybody have some example ?
Regards,
Beta Was this translation helpful? Give feedback.
All reactions