RajeshChaudhary345 / dropdown-check-list

Automatically exported from code.google.com/p/dropdown-check-list
0 stars 0 forks source link

JQuery 1.6 incompatibility #183

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
** 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

GoogleCodeExporter commented 8 years ago

Original comment by womohun...@ittrium.com on 17 May 2011 at 6:31