Closed GoogleCodeExporter closed 8 years ago
Pending version 1.1 will be compatible with jQuery 1.4.2, ui 1.8.4.
Release version 1.0 is based on jQuery 1.3.2, ui 1.7.2
Original comment by womohun...@ittrium.com
on 17 Sep 2010 at 5:07
Issue addressed with version 1.1. Please let me know if you have any problems.
Original comment by womohun...@ittrium.com
on 23 Sep 2010 at 3:31
hi :)
This bug still exists in 1.4.
<html>
<head>
<script src="js/jq/jquery.js"></script>
<script src="js/jq/jquery-ui-1.8.14.custom.min.js"></script>
<script src="js/jq/ui.dropdownchecklist-1.4-min.js"></script>
<link href="css/jquery-ui-1.8.14.custom.css" />
<link href="css/ui.dropdownchecklist.css" />
</head>
<body>
<ul class="types_container">
<li>
<select id="graph_channels" multiple name="graph_channels">
<option value="one">one</option>
<option value="two">two</option>
<option value="three">three</option>
<option value="four">four</option>
</select>
</li>
</ul>
<script>
function crateDropDownList() {
$("#graph_channels").dropdownchecklist("destroy");
$("#graph_channels").dropdownchecklist({
firstItemChecksAll : false,
forceMultiple : true,
icon : {
placement : 'right',
toOpen : 'ui-icon-triangle-1-s'
},
width : 400,
maxDropHeight : 400
});
}
setInterval(crateDropDownList, 100);
</script>
</body>
</html>
Original comment by vitali...@gmail.com
on 7 Jan 2013 at 2:48
Original issue reported on code.google.com by
cedric.c...@gmail.com
on 20 Aug 2010 at 11:43