テーブルセル内で複数選択ドロップダウンリストを使用しています。しかし、それをクリックすると、オプションはその下のセルの内容の後ろに隠されます。
私は何を間違っていますか?
$('#example-getting-started').multiselect({
buttonWidth: '700px',
maxHeight: 200,
buttonText: function(options, select) {
var labels = [];
options.each(function() {
if ($(this).attr('label') !== undefined) {
labels.push($(this).attr('label'));
} else {
labels.push($(this).html());
}
});
return labels.join(', ') + '';
}
});
<div id="attachedInfoOpts">
<select id="example-getting-started" multiple="multiple">
<option value="Breating Exercises" selected="selected">Breating Exercises</option>
<option value="Prescription">Prescription</option>
<option value="Health Dieting Information" selected="selected">Healthy Dieting Information</option>
<option value="Health Dieting Information" selected="selected">Healthy Dieting Information</option>
</select>
</div>