Hi,
I have a little strange problem with an multiple select field.
If i set the chosen option width to 100% the field gets really small.
This is a screenshot without the option

and this is with activate option

Does anybody know because it gets smaller with the option?
On both situation the content of the dropdown will be cut off. This width could also not be the reason of that.
All other chosen elements will get the right width with this option only the multiple select field not.
BR
i have the same problem,
I resolved it creating a div with the width that you want. Insde the div i create the control chosen and I establis the style width: inherit!important; and it works
Are you specifying a width of 100% on the original select field or when you call Chosen? The proper way to do it is to include it when you call Chosen:
$("select").chosen({ width: '100%' });
If you're using it that way and still seeing a bug, please provide a link that shows the problem happening (ideally in the form of a fiddle) so we can help you debug. Thanks.
Most helpful comment
Are you specifying a width of 100% on the original select field or when you call Chosen? The proper way to do it is to include it when you call Chosen:
If you're using it that way and still seeing a bug, please provide a link that shows the problem happening (ideally in the form of a fiddle) so we can help you debug. Thanks.