
Re: Elements moving around the page
you'l need to use detach every time when the dom is modified and apply again pie, I'm using js version and in project I have wicket that draws me the elements and I have fixed that with this function:
window.document.ready = function(){
Wicket.Ajax.registerPostCallHandler(pieStarter);
}
function pieStarter(){
if (window.PIE) {
go();
}
}
function go(){
$('.class1,.class2,#id3').each(function(){
PIE.detach(this);
});
$('.class1,.class2,#id3').each(function(){
PIE.attach(this);
});
}
You can replace function how you need.
hope it helps:)