Is there an alternative to Element.setAbsolutePositioned(zIndex) in the new Alpha or should I just do the setStyle stuff myself?

#2
![]() |
![]() setAbsolutePositioned and setRelativePositioned where both combined (and got a couple new params as well):
//position absolute with z-index 100 el.position('absolute', 100); // set xy too el.position('absolute', 100, 5, 5); ![]() |