4,592 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
94
views
Custom button in EasyAdmin 4.27 with Symfony 7.3
In a Symfony 7.3 project, I'm using the EasyAdmin bundle (v4.27.5).
I have a form called EvTypeForm with three fields. The form is assigned a data_class EvData.
The form is displayed within the admin ...
0
votes
0
answers
56
views
Approach for Handling CRUD Operations with Two Related DataGridViews and Save Changes Button
In a C# desktop application I have two related DataGridViews (dgvAlgorithm and dgvParameter) and a save changes button (btnSave). Both DataGridViews are related to 3 tables: (algorithm, parameter, ...
0
votes
1
answer
101
views
How to reset password in a Django UserChangeForm
I have a basic CustomUser model in my project. When I want to update it I fill my form with instance where I try to make user's password null, but anyway in the form I receive:
"No password set.
...
1
vote
2
answers
126
views
How to create an update function for a Django AbstractUser
I created signup/login with 'UserCreationForm'. How can I make update possible by using 'UserChangeForm'?
users/models.py
from django.contrib.auth.models
import AbstractUser
# Create your models here....
2
votes
2
answers
86
views
Laravel redirect 404 issue after Form submitting [closed]
I have developed a webapp with laravel.
Unfortunately I get a 404 after saving the form. But the logging shows me that the task was successfully updated.
Some stackoverflow postings cant helped me.
So ...
0
votes
1
answer
103
views
spring boot saveAll() hangs when called from @Scheduled, but works if called from a controller
saveAll(myEntities) just hangs if my service is called from a @Scheduled job sub module, but works if called from a @RestController submodule.
Other @Schuled jobs in the same module work.
However, ...
1
vote
0
answers
36
views
Symfony form $form->isValid() always returns false – Form is submitted, all fields filled
<div class="container">
<h1>Hello {{ controller_name }}! </h1>
<div class="row">
<table class="table">
<tr>
...
0
votes
1
answer
23
views
Cannot POST /put-crud
I am trying to build a REST API out of Nodejs
this is the form to edit user information
<form action="/put-crud" method="POST">
<div class="form-row">
...
0
votes
1
answer
36
views
Error: Can't set headers after they are sent to the client (Node.js)
here is my fullcode whenever i use Sendemail code given below in forgot password it works very well but when i use it in signUp controller it is throwing the error ( Error: Can't set headers after ...
0
votes
0
answers
67
views
How to make many to many relation in NestJS with `nestjsx/crud` or `dataui/crud`
I'm building a RestAPI with NestJS and using the dataui/crud (nestjsx/crud) framework for crud operations and need help implementing a ManyToMany relation.
When creating a ManyToOne or OneToMany ...
-3
votes
1
answer
103
views
Automatic logout if the tab is closed or every 15 minutes page will logout in app script web page
Is there a formula or function in Google Apps Script that will automatically log out the webpage every 15 minutes?
Is there a formula or function in Google Apps Script that will automatically log out ...
1
vote
2
answers
107
views
Show all the data that equals in the inputted values of username by searching the inputted values from Data sheet
I have created a web app for database of my company, the web app is simple, it first asks them to provide their username and a password. Now, I need to find a way how to show all the data that equals ...
0
votes
1
answer
23
views
Nestjs CrudContoller Patch method not updates record
Updating record with nestjs/crud CrudController not updates record
0
votes
0
answers
152
views
CRUD operation on .NET, WPF and Entity Framework
I have an "Enterprise Resource Planning" project. It uses a SQLite database.
With Entity Framewok, I got my entity classes.
For CRUD operations, I modified my ObservableCollection:
public ...
1
vote
1
answer
495
views
What is Causing the Payload Argument must be type object when data matches the schema
I am getting an error
⨯ [TypeError: The "payload" argument must be of type object. Received null] {
code: 'ERR_INVALID_ARG_TYPE',
digest: '447529059'
}
when I have the following prisma ...