The inputSelector function does not properly handle having multiple checkboxes that share the same name. If any of the checkboxes have been checked, it will recheck all of them, regardless of the checkbox's value. i.e.:
Tracked down to it being a problem in inputSelector with handling multiple checkboxes with the same name. A check for checkboxs[i].value == data will fix the bug though... (around line 108)
2 Comments:
Sti cazzi... e pacman 3.1 non e' ancora uscito?
The inputSelector function does not properly handle having multiple checkboxes that share the same name. If any of the checkboxes have been checked, it will recheck all of them, regardless of the checkbox's value. i.e.:
< input type="checkbox" name="a[]" value="text" />
< input type="checkbox" name="a[]" value="text2" />
Tracked down to it being a problem in inputSelector with handling multiple checkboxes with the same name. A check for checkboxs[i].value == data will fix the bug though... (around line 108)
Post a Comment
Links to this post:
Create a Link
<< Home