elements in Radios / Checkboxes tab lack id
emmar opened this issue · 4 comments
emmar commented
None of the elements in the Radios / Checkboxes tab do the drag-and-drop correctly, and after some digging, I've found it's because they don't have id's.
How to get there:
- select the "Radios / Checkboxes" tab
- click any of the elements
- drag it to the form box on the left
- take finger off the mouse button (mouseUp)
What it looks like:
- click and drag look good
- element gets added to form
- popover box is "stuck" to the cursor until you click again
In chrome javascript console, you get the error "Uncaught TypeError: Cannot read property 'value' of undefined." It refers you to the following line var t=e.attributes.fields.id.value;
dptole commented
The pull request #103 may fix this issue but I've seen another one.
When the radios (inline or multiple) are pushed to the form they share the same group name called radio
, which causes the previously inserted radios to be unfocused.
minikomi commented