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