All Questions
227 questions
0
votes
0
answers
32
views
JS Conflict Between Custom Widget and Form Calendar Element
I made a widget to add a custom question to the source code from a form created by a drag and drop form builder (jotform) and it works inside a simple form.
However, when I add a jotform calendar ...
0
votes
0
answers
40
views
React Form Not Submitting on onSubmit, But Works with onClick
I am trying to submit a login form in my React application. I have attached the loginUser function to the form's onSubmit event. However, when I press the login button, nothing happens, and no errors ...
1
vote
0
answers
21
views
not able to remove default placeholder in React semantic UI Input type Date
I am using the below input using semantic ui react form.
<Form.Input name='StartDate' type='date' placeholder=''
label='Start Date' readOnly={true}
...
1
vote
2
answers
168
views
Trying to stay on the page after submitting, "Failed to fetch" (Used Typescript to write the form)
After trying not to redirect the user that has submitted the form, I had trouble sending the form to my form service.
I setup a Formspark form to use on framer.com. Framer.com forces me to use ...
0
votes
0
answers
53
views
REACT Page Buttons Become Unresponsive
I have a REACT website that sits in an IFrame within another website. It works perfectly, but now I hear sometimes the buttons, textboxes and all other form controls become un-clickable or ...
-1
votes
1
answer
39
views
React preventDefault function doesn't stop reloading the form page
I am creating a React context to decode jwts and manage login function of the users. Backend is written using django.
These are simplified code.
The issue I am facing here is that I am unable to get ...
0
votes
0
answers
61
views
MUI Grid Width/ CSS issue
To be honest I am not sure, what is causing the problem, but I am trying to use MaterialUI and its not occupying the full width and I am not sure what is causing this issue. I have tried a lot of ...
0
votes
0
answers
50
views
Is it possible to use JS to set the value of a React + downshift autocomplete dropdown?
OBJECTIVE
I'm a support agent trying to create a Chrome Extension to automate the filling out of Zendesk forms to make my job easier. I'm using the console at the moment.
SITUATION
Unfortunately, ...
1
vote
1
answer
157
views
How to have submit and field validation at the same time in formik?
i want to validate form on submit with formik, while also have field level validation.For example, validate all fields when submitting, and validate a field on change.
return (
<div className='...
0
votes
0
answers
96
views
Why are browsers autofilling my email field with password?
So I have a multi step register form, in the first step I want the user to give me email, password and confirm password. Pretty standard stuff. So as the first step I render:
type UserData = {
email:...
0
votes
0
answers
24
views
Not able to setData in state ReactJS [duplicate]
import { useEffect, useState } from "react";
const Inventory = () => {
const [data, setData] = useState({});
const [repo, setRepo] = useState([]);
function handleChange(e) {
...
0
votes
1
answer
26
views
how can i conditionally show questions in amp email
I have a react app in which i want to send form to users . I want to show the input field after user selects answer to previous question.
<!DOCTYPE html>
<html ⚡4email>
<...
2
votes
0
answers
29
views
I'm working on a multilingual form implementation using react-admin in a React application. The form consists of four inputs
English Input: For this input, I need to type in English using an English keyboard, with English characters generated automatically.
Spanish Input: In the second input, I need to type in Spanish ...
0
votes
0
answers
95
views
Programmatically submitting a form on an iframe sets origin to null
I'm looking to programmatically submit a form that will return HTML to be rendered by an iframe. In the past, we have been able to pass along information to the backend via query string parameters. ...
0
votes
0
answers
35
views
Is there a way to tell the browser to autofill a specific field in a <form> if there are two or more <inputs> with the same label? - HTML, JS, React
Can the browser be able to autofill a specific field in a if there are two or more with the same label?
I have a form that looks like this:
<form>
<label>Card Number</label>
&...