67,737 questions
0
votes
0
answers
9
views
Solana validator `in_errors` and `rcvbuf_errors` keep creasing, can't catch up
I'm running an validator, but after two days, still can't catchup the latest slot and keep downloading snapshots, I found the in_errors and rcvbuf_errors are always high and keep increasing, not sure ...
-1
votes
0
answers
8
views
Validating IModelValidator with RecursiveDataAnnotationValidator
My goal is to add a couple of default validation rules system wide to my asp.net application, but also be able to use these validation rules in my test setup.
I have something like:
public void ...
1
vote
0
answers
13
views
How to disable default ValidationException handler? [duplicate]
I have a store method in DocumentController. This method use custom laravel FormRequest to validate request data. A try catch block in this store method should handle the ValidationException by ...
0
votes
1
answer
31
views
Pydantic/Django Ninja use only existing keys (even with None)
having an app in Django Ninja with schemas:
class NumericalFilterSchema(Schema):
gt: Optional[int] = None
lt: Optional[int] = None
gte: Optional[int] = None
lte: Optional[int] = None
...
0
votes
0
answers
26
views
WPF DataGrid disabling editing on validation errors
My view has a DataGrid that displays a ObservableCollection<MyViewModel>. To validate the input of MyViewModel properties, I use a ValidationRule that checks all model properties in the Validate ...
-1
votes
0
answers
80
views
What's happened to formvalidation.io? [closed]
I've noticed that the front-end validation library we use formvalidation.io is down, including all documentation.
Could anyone shed any light on the situation?
I've searched the web including Reddit, ...
0
votes
0
answers
11
views
How to retain values on invoice after throwing an error using user event script?
I have developed line level amount validation user event script. I throw error if amount is invalid. When user enters invalid amount, user can see error but once he go back those lines go away from ...
0
votes
0
answers
20
views
Odoo autocomplete feature on mobile number creates issue while creating contacts
I had locally setup the odoo project on my machine. I am working on a issue where I have to merge the duplicate contacts in an automated manner. But before I wanted to create few duplicate contacts on ...
0
votes
1
answer
14
views
TagHelper not working with server side Validations
Ok this is my problem. Today I decided to implement a mechanism that would make it easier for me to implement fields in the views. I have a project in razor pages and I do the validation of required ...
0
votes
0
answers
63
views
How to Remove validation text?
This is My Custom validation textfield
CmnTextField(
labelText: "Location",
controller: LocationController,
readOnly: true,
...
0
votes
0
answers
20
views
React - multiple form fields dependent button enabling
My React web app has the below layout in a page:
a. Common “Info” section (form) at the upper half.
b. Say 4 different “Details” tabs in the lower half. (Also forms)
Now I have a button in a. that ...
0
votes
0
answers
35
views
Blazor editform displays required message on autopopulated fields
I'm not new to ASP.NET or C#, but I am brand new to Blazor and Entity Framework.
I've got a small form that consists of four fields: "SmockId", "FName", "LName", and &...
0
votes
1
answer
41
views
I am getting multiple validation errors in react function
I am fairly new to React (but have coded in JavaScript and C# for 20 plus years). I have a vanilla form using hook-form, react-bootstrap, zod and flowbite-react. There are two nearly identical ...
1
vote
0
answers
24
views
MongoDB ObjectID binding and validation in Golang
I want an use case that receive a list of string (represent for ObjectID hex) and I want to build a struct using binding tag to validate:
If receiving one, we could use:
type SingleID struct {
...
0
votes
0
answers
6
views
express-validator in node multipart/form-data
I tried sending in postman a form-data with 2 fields, userProData with the Json data of the user, and imageProfile as a file.
I cant find how to send in a single request both body json with user data ...