** What steps will reproduce the problem?
Dropdown itens selection (check) not working
** What is the expected output? What do you see instead?
Dropdown itens selection does not update text field
** What is your environment?
-- DropDownCheckList version: 1.3
-- jQuery version: 1.6
-- jQuery UI version: 1.8.12
-- Browser and version: Chrome
** Please provide any additional information below/Please attach
Fix / Correction:
Open file "ui.dropdownchecklist-1.3-min.js" and replace all occurrences of
'attr("checked"' to 'prop("checked"'.
Example:
Original:
var checked = $(this).attr("checked");
After changes (fix):
var checked = $(this).prop("checked");
It's works for me. :)
Original issue reported on code.google.com by e...@harpiatec.com on 17 May 2011 at 6:22
Original issue reported on code.google.com by
e...@harpiatec.com
on 17 May 2011 at 6:22