I am using Select2 3.3.2
I have very very long options in the select. Example:
The property you used is not for controlling the dropdown width. You can use the dropdownCssClass
property.
Here's a demo in jsFiddle.
JavaScript:
$(document).ready(function() {
$("#e1").select2({dropdownCssClass : 'bigdrop'});
});
CSS:
.bigdrop {
width: 600px !important;
}
Please note that for more recent versions there is now a better solution! See Dave Amphlett's answer