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

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>
link|improve this question

40% accept rate
Thomas, can you the XSP for the controls, etc - its hard to work out the style without seeing what the code is. Thanks - jeremy – Jeremy Hodge Feb 5 at 0:32
feedback

1 Answer

Looks like I will answer my own question here...

as I was looking more deeply into the code I saw that there is a hidden input field displaying each item like this: item1,item2,item3,item4,item5,item6,item7,item8,item9,item10,item11,item12

so I did a bit of reasearch and I seem to need css word-wrap: break-word SPAN[id$='djextListTextBox10']{width:200px;word-wrap: break-word}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.