Package org.zkoss.zk.au.out

Examples of org.zkoss.zk.au.out.AuSelect


  }

  /** Selects the whole text in this input.
   */
  public void select() {
    response(new AuSelect(this));
  }
View Full Code Here


   *
   * @param start the start position of the text (included)
   * @param end the end position of the text (excluded)
   */
  public void setSelectionRange(int start, int end) {
    response(new AuSelect(this, start, end));
  }
View Full Code Here

TOP

Related Classes of org.zkoss.zk.au.out.AuSelect

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.