IE doesn't deep clone elements grabbed from the documentFragment, so if
we overwrite those elements the inserted row (other than the last row)
will only contain the outer DIV. Solution - don't overwrite these temp
elements - append them to the documentFragment so they still exist at
the time we insert into the main DOM document.
(elt = $(r.VP_domid))) {
tmp.push(elt);
} else {
- fdiv.update(this.prepareRow(r));
+ fdiv.insert({ top: this.prepareRow(r) });
added[r.VP_domid] = 1;
tmp.push(fdiv.down());
}