Back using Behavior/Delegator..
I'm used to inserting new elements into to the dom using delegator and then firing ammendDom (much like delegator.ajax example) so that possible behavior on those elements are applied.
But now I have an element with a "cloning" behavior declared. The dom is updated and I need to invoke/apply the behaviors for these cloned elements (from inside the original behavior causing the clone).
Because the clones (LI's in this case) are not inserted into a new target container I can not easily do api.applyFilters(target). If I run this on the parent UL-element (as if that was the target) I get unexpected results too (behaviors inside the parent are then applied in a loop).
How should this be approached? I have it working, but that's using some ugly code :)