/** The Element to resize. */ public void setTarget(ExtElement el) { JsoHelper.setAttribute(jsObj, "target", el.getJsObj()); }
/** * An element, into which the resize operation must be constrained. * * @param element */ public void setContrainTo(ExtElement element) { JsoHelper.setAttribute(jsObj, "constrainTo", element.getJsObj()); }
/** * Element from which the window should animate while opening. * * <p>Defaults to: null */ public void setAnimateTarget(ExtElement target) { setAttribute("animateTarget", target.getJsObj(), true, true); }