I am using <s:doubleselect> in my jsp. The problem is both come on different row while I want the in same line. Here is the code
<s:doubleselect theme="css_xhtml" labelposition="top"
requiredposition="left" name="index" cssClass="dropdown_menu" list="#request.constants.keySet()"
doubleList="#request.constants[top]" doubleName="oldValue"
doubleCssClass="dropdown_menu" ></s:doubleselect>
How it can be possible to put them on same line?
This behavior is an unfortunate holdover from the old UI tags.
The easiest solution is to use CSS to change
<br/>styling inside the.wwctrlclass (changes all controls, which may be what you want anyway):A less-practical, but potentially cleaner, solution would be to extend the theme and tweak the control’s template. There are a number of controls that have some questionable HTML, but hardly anybody uses the specialized controls, so we never fix them.