-
Notifications
You must be signed in to change notification settings - Fork 531
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Form inputs are not having 'name' attributes #243
Comments
You can set |
It worked fine, thanks E.g. For checklist its not working Following is my code Whereas output of same is
Upto INR 1 Lakh
INR 1 Lakh to 2 Lakh
INR 2 Lakh to 4 Lakh
INR 4 Lakh to 7 Lakh
.
.
.
INR 1 Crore & above
|
Whereas its just creating this |
Yes because |
Yup, but for checklist, its mentioned to declare "name" and "value" under Values property of that object. But that's not working. Its only rendering input type="checkbox" and "name" as label E.g. For type: 'checklist', it should render something like : (label) ( Input type="checkbox" name="Upto INR 1 Lakh" value="upto1Lakh" ) Upto INR 1 Lakh (/label) |
i have the same issue ... to fetch the input values for the form the input needs a name attribut
render only: <label><input type="checkbox">wlan</label> |
Yup |
yae i hacked it with a formdata append , see below, otherwise i had no data in the form ...
|
Use `name` in checklist input fields. Fix vue-generators#243
While submitting all details, I wanna do it via ajax and json encoded code. Also i don't know how many fields i would have in each form, it totally depends upon user. So using jquery "serialize" to get data inserted by user.
That is not getting me data, as 'name' attribute is missing from inputs. Can you guys please fix it
The text was updated successfully, but these errors were encountered: