You don't show any page code with an id of "test1". I'd look in your
"irrelevent stuff" and see what's being assigned an id of test1.
On 8/21/06, Danimal <[EMAIL PROTECTED]> wrote:
Here is the code I am using and the resulting markup. I am using JSF 1.2 impl
in glassfish and this might be the problem, but I think it is the render
class for the datalist. I have placed elipses(...) for irrelevent stuff.
<h:panelGroup layout="block" id="unranked">
<f:verbatim><ul class="sortablelist" id="unranked"
style="..."></f:verbatim>
<t:dataList var="player"
value="#{profile.leaguePlayers}"
layout="simple">
<h:outputText value="<li class='green'
id='playerId_#{player.id}'>#{player.summaryName}</li>" escape="false"/>
</t:dataList>
<f:verbatim></ul></f:verbatim>
</h:panelGroup>
The markup is this:
<div id="midview:content:unranked">
<ul class="sortablelist" id="unranked" style="...">
<span id="midview:content:test1">
<li class='green' id='playerId_57'>Tooth Fairy</li>
<li class='green' id='playerId_57'>Boogie Man</li>
<li class='green' id='playerId_57'>Big Foot</li>
...
...
...
</span></ul></div>