Package com.extjs.gxt.ui.client.Style

Examples of com.extjs.gxt.ui.client.Style.ScrollDir


   * @param value the new scroll value
   * @param config the fx config
   * @return this
   */
  public El scrollTo(String side, int value, FxConfig config) {
    ScrollDir dir = ScrollDir.VERTICAL;
    if (side.equalsIgnoreCase("left")) {
      dir = ScrollDir.HORIZONTAL;
    }
    BaseEffect.scroll(this, config, dir, value);
    return this;
View Full Code Here


   * @param value the new scroll value
   * @param config the fx config
   * @return this
   */
  public El scrollTo(String side, int value, FxConfig config) {
    ScrollDir dir = ScrollDir.VERTICAL;
    if (side.equalsIgnoreCase("left")) {
      dir = ScrollDir.HORIZONTAL;
    }
    BaseEffect.scroll(this, config, dir, value);
    return this;
View Full Code Here

   * @param value the new scroll value
   * @param config the fx config
   * @return this
   */
  public El scrollTo(String side, int value, FxConfig config) {
    ScrollDir dir = ScrollDir.VERTICAL;
    if (side.equalsIgnoreCase("left")) {
      dir = ScrollDir.HORIZONTAL;
    }
    BaseEffect.scroll(this, config, dir, value);
    return this;
View Full Code Here

   * @param value the new scroll value
   * @param config the fx config
   * @return this
   */
  public El scrollTo(String side, int value, FxConfig config) {
    ScrollDir dir = ScrollDir.VERTICAL;
    if (side.equalsIgnoreCase("left")) {
      dir = ScrollDir.HORIZONTAL;
    }
    BaseEffect.scroll(this, config, dir, value);
    return this;
View Full Code Here

   * @param value the new scroll value
   * @param config the fx config
   * @return this
   */
  public El scrollTo(String side, int value, FxConfig config) {
    ScrollDir dir = ScrollDir.VERTICAL;
    if (side.equalsIgnoreCase("left")) {
      dir = ScrollDir.HORIZONTAL;
    }
    BaseEffect.scroll(this, config, dir, value);
    return this;
View Full Code Here

   * @param value the new scroll value
   * @param config the fx config
   * @return this
   */
  public El scrollTo(String side, int value, FxConfig config) {
    ScrollDir dir = ScrollDir.VERTICAL;
    if (side.equalsIgnoreCase("left")) {
      dir = ScrollDir.HORIZONTAL;
    }
    BaseEffect.scroll(this, config, dir, value);
    return this;
View Full Code Here

   * @param value the new scroll value
   * @param config the fx config
   * @return this
   */
  public El scrollTo(String side, int value, FxConfig config) {
    ScrollDir dir = ScrollDir.VERTICAL;
    if (side.equalsIgnoreCase("left")) {
      dir = ScrollDir.HORIZONTAL;
    }
    BaseEffect.scroll(this, config, dir, value);
    return this;
View Full Code Here

TOP

Related Classes of com.extjs.gxt.ui.client.Style.ScrollDir

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.