input type='checkbox' not working properly in new version
See original GitHub issueIn previous version (before Mar 6 update), I used this syntax to get and set value for checkbox:
<input data-getfrom="checked:Alarm" data-to="Alarm" type="checkbox"/>
If I use the new syntax like this:
<input data-link="Alarm" type="checkbox" />
If Alarm property is set to true, it doesn’t show as checked at the checkbox. However, I can see that in the view model, the property can be updated when user check or uncheck the checkbox.
What should I do for the new version?
Issue Analytics
- State:
- Created 12 years ago
- Comments:15 (8 by maintainers)
Top Results From Across the Web
Checkboxes not working - Stack Overflow
This is not correct, input checkboxes can have the same ID and name and it will still function. The issue must be somewhere...
Read more ><input type="checkbox"> - HTML: HyperText Markup Language
A Boolean attribute indicating whether this checkbox is checked by default (when the page loads). It does not indicate whether this checkbox is ......
Read more >Input checkbox not working - Material Design for Bootstrap
You need to set id of checkbox element, import React from 'react'; import ...
Read more >Input old checkbox not working properly - Laracasts
I have a form and I want to populate checkbox selections selected by the user if something wrong on submitting the form. My...
Read more >Input type checkbox not working properly. - HTML/CSS
Initial value of checkbox is “no”, I click in checkbox and submit, I'm still getting no. ... How to fix this issue? ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
if type=“ckeckbox” default setting value = 0, change it to value = false. or It’s working for me with type=“selectboxes” instead of type=“checkbox”. with json format
Yeah, I was just exploring form.io with Angular.
On Sat, 27 Oct 2018, 00:13 Boris Moore, notifications@github.com wrote: