Open Closed

abp-modal razor page validation issue #5133


User avatar
0
trina.thompson created
  • ABP Framework version: v7.2.1
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

I'm using the abp-modal with a razor page and the form posts to a handler in the razor page. If there are server side validation errors, the modal still closes and never shows the validation errors. When you access the page directly, not through the modal, it behaves as expected showing the server side validation messages. Please advise on what is necessary for server side validation errors to display in the normal way inside an abp-modal.


8 Answer(s)
  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    Steps to reproduce the issue,

    Please share some code, Thanks

  • User Avatar
    0
    trina.thompson created

    Steps to reproduce:

    • Launch the modal
    • Enter invalid data
    • Hit save button
    • Modal closes and does not show server error
  • User Avatar
    0
    trina.thompson created

    Script:

    let dataGrid;
    let createBlockedAccountModal;
    
    $(document).ready(function () {
        createBlockedAccountModal = new abp.ModalManager({
            viewUrl: '/platform-portal/Processing/ExceptionHandling/BlockedAccounts/Create'
        });
        createBlockedAccountModal.onResult(function (a, b) {
            dataGrid.refresh();
        });
    });
    
    $('#openAddBlockedAccountModal').click(function () {
        createBlockedAccountModal.open({
        });
    });
    
  • User Avatar
    0
    trina.thompson created

    Modal:

    <form method="post" action="@Url.Page("/platform-portal/Processing/ExceptionHandling/BlockedAccounts/Create")">
        @Html.AntiForgeryToken()
        Modal Content Here
    </form>
    
  • User Avatar
    0
    trina.thompson created

    Code Behind:

    public async Task<IActionResult> OnPostAsync()
    {
        if (!ModelState.IsValid)
        {
            return Page();
        }
        try
        {
            await _blockedAccountAppService.CreateAsync(CreateBlockedAccount);
        }
        catch (AbpValidationException ex)
        {
            foreach (var error in ex.ValidationErrors)
            {
                ModelState.AddModelError($"CreateBlockedAccount.{error.MemberNames.FirstOrDefault()}", error.ErrorMessage);
            }
            return Page();
        }
        catch (BusinessException ex)
        {
            ModelState.AddModelError("", ex.Message);
            return Page();
        }
        return Page();
    }
    
  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    Please try to throw an exception instead of adding an error to ModelState.

    abp will show an error message automatically.

    https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js#L55-L69

  • User Avatar
    0
    trina.thompson created

    Thank you for the idea. However, this does not provide our desired user experience. We would like the validation to be displayed to the user in the form as is the normal behavior for validation error feedback. Is there a way to achieve our desired behavior?

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    There is no builtin way to do this.

Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11