FormHelper icon indicating copy to clipboard operation
FormHelper copied to clipboard

ASP.NET Core - Transform server-side validations to client-side without writing any javascript code. (Compatible with Fluent Validation)

Results 10 FormHelper issues
Sort by recently updated
recently updated
newest added

hi, im having an issue using. the validation doesnt happen. the post hits to my backend. i have a modal which posts data using ajax. i tried to implement seeing...

Hocam öncelikle elinize sağlık.. gerçekten de çok başarılı.. yukardaki hatayı aldım sonra sizin komutları yaptım hata giderilmedi. sonra denerken hatanın sweetalert2 den kaynaklı olduğunu gördüm. kullanmayınca formhelper düzeldi. sweetalert2 yerine...

If `options.ToastrDefaultPosition = ToastrPosition.TopCenter`, the actual toastr position is BottomFullWidth. This is caused by a typo at line 53 & 54 in `Extensions/FormHelperExtensions.cs`: ``` case ToastrPosition.TopCenter: return "formhelper-toast-bottom-full-width"; ``` Please...

After the call form post method, I return the view with the model object in view but I am not able to get the model result in my view javascript...

Version:FormHelper 4.0.1 I have been able to receive callbacks to a function defined within a named closure (?) but the same format does not seem to work for asp-beforeSubmit. I...

Sinan merhaba, Kütüphaneni çok beğendim, aşağıdaki yorumlarımın ,razor tarafı içinde geliştirme yapmak istersen yararlı olacağını düşünüyorum. Asp.net core razor da action filters mevcut değil onun yerine pagefilters var.Ayrıca antiforgery token...

enhancement
good first issue

Hello all, Can I use a validation summary instead of a "span with asp-validation-for" to show the error messages? How do I do it? I tried to put the tag...

While you can currently specify a string to use for Toastr messages during the configuration, there's no obvious / easy way to setup a localized string. I'd like to be...

My razorpages code is as follows: ```csharp [BindProperty] public CreateTeamViewModel CreateTeamRequest { get; set; } = default!; public async Task OnPostAsync(CancellationToken cancellationToken) { var result = await this.validator.ValidateAsync(this.CreateTeamRequest!, cancellationToken); if...

My colleague use NewtonsoftJson.DefaultContractResolver as Json Serializer. so the result becomes ` {"Status":1,"Message":"Product saved.","RedirectUri":null,"RedirectDelay":null,"Object":null,"ValidationErrors":null,"IsSucceed":true} ` my current workaround: ` var settings = new JsonSerializerSettings { ContractResolver = new CamelCasePropertyNamesContractResolver() };...