Jake B.
Well-known member
Not sure if this was intentionaly, but by looking at the CSS that causes it I don't think it is. If you create a select box that allows multiple selections using <xen:selectunit multiple="true"> it adds a size="5" so it will show 5 options which normally wouldn't be a problem. However, that triggers the following CSS:
I assume this is so the width will work if you have a textCtrl and set a size on it inline, but I don't think that should apply to setting a size on a select input.
If this doesn't make sense I can probably explain it better, just in the middle of working on something and came across this
Jake
Code:
.xenForm .ctrlUnit > dd .textCtrl[size],
.xenForm .ctrlUnit > dd .textCtrl.autoSize {
width: auto !important;
min-width: 0;
}
I assume this is so the width will work if you have a textCtrl and set a size on it inline, but I don't think that should apply to setting a size on a select input.
If this doesn't make sense I can probably explain it better, just in the middle of working on something and came across this
Jake