vamp
(Vamphouse)
1
jquery.yiilistview.js:
replace:
88: $('#'+this).html($(data).find('#'+this));
to:
88: $('#'+this).replaceWith($(data).wrap('<span>').parent().find('#'+this+':first'));
.replaceWith(…) - because after each update operation new element (with ID) inserted in element with original ID

.wrap(’<span>’).parent().find(…) - to find first element with given id (try to:
$('<div id="yw0">..</div>').find('#yw0').length // result = 0 - mistake!
with .wrap(’<span>’).parent().find(…) all works fine!)
ykee
(Tomasz Wolny)
2
Hi vamp - You have right - it’s a bug, but solution is more simply:
replace:
88: $('#'+this).html($(data).find('#'+this));
to:
88: $('#'+this).html($(data).find('#'+this+' > *'));
Regards!
vamp
(Vamphouse)
3
first of all:
$(’<div id=“test”>asd</div>’).find(’#test > *’); - not works correctly 
second - $(’#’+this).find(’#’+this+’ > *’) - doesn’t find text nodes! 
ykee
(Tomasz Wolny)
4
Hmmm… You have right.
But in blog works good, becouse any text is inside html’s tags.
samdark
(Alexander Makarov)
5
Is there a ticket for it?