I am trying to wrap the items in a xe:djextListTextBox so that when I have added items to a specific width the next item added starts at a new line.
Currently I have the xe:djextListTextBox in a table cell and my items are extending the cell instead of wrapping.
I have tried plenty of stuff but can't seem to figure it out.
This is one tecnique I used in my stylesheet:
SPAN[id$='djextListTextBox10']{width:200px}
Thanks for your help
Image show the items are extending the table width, if I add an item containg a space the items seem to wrap ok

<xp:panel style="width:300px">
<xe:djextListTextBox id="djextListTextBox10"
multipleSeparator="," multipleTrim="true"
value="#{userdocbasic.fld}" displayLabel="true"
style="font-weight:bold;width:300px" type="text" tooltip="Select"
title="nnn">
</xe:djextListTextBox>
</xp:panel>
<div style="width:300px">
<span id="widget_view:_id1:dynC:_id96:djextListTextBox10" wairole="presentation" style="font-weight: bold; width: 300px; " class="" dojoattachevent="onmouseenter:_onMouse,onmouseleave:_onMouse,onmousedown:_onMouse" role="presentation" widgetid="view:_id1:dynC:_id96:djextListTextBox10">
<input name="view:_id1:dynC:_id96:djextListTextBox10" dojoattachpoint="textbox" type="hidden" dojoattachevent="onchange: _onTextChange" value="item1,item2,item3,item4,item5,item6,item7,item8,item9,item10,item11,item12">
<span dojoattachpoint="list,focusNode" class="lotusFilters lotusInlineList" id="view:_id1:dynC:_id96:djextListTextBox10" tabindex="-1" title="User defined skills">
<span val="item1" style="" tabindex="0"><a href="javascript:;" tabindex="-1" class="lotusFilter">item1<span class="lotusClose">x</span></a></span></span>
</span>
</div>