Open Closed

Redirect Forms module in Blazor Server #4804


User avatar
0
davidlbrenchley@gmail.com created

I would like to use a form questionnaire as part of a wizard/stepped process. After a user has hit the submit button, how would I go about redirecting the user to a page that I want to send than rather than the default formresponse that the form sends the user to? I would also need to be able to grab the id of the user response as part of that redirect.

  • ABP Framework version: v7.1.0
  • UI type: Blazor
  • DB provider: EF Core
    • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

5 Answer(s)
  • User Avatar
    0
    gterdem created
    Senior .NET Developer

    The submit button located in the form is basically a view component called ViewFormViewComponent.

    Currently, the redirection happens hard-codedly in the component's javascript which is written in Vue.js:

    async submitAnswers(submittedForm) {
        ...
        
        try {
            const result = await this.formResponseService.saveAnswers(this.formId, postData);
            location.href = `${window.origin}/Forms/${result.id}/FormResponse`;
        } 
        ...
    },
    

    You can override this component or modify it however I am not sure if it will be a good fit for a wizard/step type of process.

  • User Avatar
    0
    davidlbrenchley@gmail.com created

    I have no VUE experience. Is there a smaller subcomponent that just has the form that I could retrieve the results myself and push forward?

  • User Avatar
    0
    liangshiwei created
    Support Team Fullstack Developer

    Hi,

    You can overwrite the code of the module by creating a JS file in the same path.

    The path is Pages/Forms/Shared/Components/ViewForm/Default.js.

    The redirect code is location.href = ${window.origin}/Forms/${result.id}/FormResponse;

    Default.js

    https://gist.github.com/realLiangshiwei/2cbe40167c85b22e13148b6558bea864

  • User Avatar
    0
    davidlbrenchley@gmail.com created

    Thank you. I'll have to try this out. It'll be 3 or 4 weeks before I can get to implementing this

  • User Avatar
    0
    liangshiwei created
    Support Team Fullstack Developer

    ok

Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 01, 2025, 08:37