Package com.extjs.gxt.ui.client.event

Examples of com.extjs.gxt.ui.client.event.FilterEvent


    return values.size() == 0 || values.contains(value);
  }

  protected void onCheckChange(MenuEvent be) {
    setActive(isActivatable(), false);
    fireEvent(Events.Update, new FilterEvent(this));
  }
View Full Code Here


   * @return the key value pairs representing the current configuration of the
   *         filter
   */
  public List<FilterConfig> serialize() {
    List<FilterConfig> args = getSerialArgs();
    fireEvent(Events.Serialize, new FilterEvent(this, args));
    return args;
  }
View Full Code Here

  public void setActive(boolean active, boolean supressEvent) {
    active = active && isActivatable();
    if (this.active != active) {
      this.active = active;
      if (!supressEvent) {
        fireEvent(active ? Events.Activate : Events.Deactivate, new FilterEvent(this));
      }
    }
  }
View Full Code Here

    return true;
  }

  protected void fireUpdate() {
    if (active) {
      fireEvent(Events.Update, new FilterEvent(this));
    }
    setActive(isActivatable(), false);
  }
View Full Code Here

   * @return the key value pairs representing the current configuration of the
   *         filter
   */
  public List<FilterConfig> serialize() {
    List<FilterConfig> args = getSerialArgs();
    fireEvent(Events.Serialize, new FilterEvent(this, args));
    return args;
  }
View Full Code Here

   */
  public void setActive(boolean active, boolean supressEvent) {
    if (this.active != active) {
      this.active = active;
      if (!supressEvent) {
        fireEvent(active ? Events.Activate : Events.Deactivate, new FilterEvent(this));
      }
    }
  }
View Full Code Here

    return true;
  }

  protected void fireUpdate() {
    if (active) {
      fireEvent(Events.Update, new FilterEvent(this));
    }
    setActive(isActivatable(), false);
  }
View Full Code Here

  }

  @Override
  public void setValue(Object value) {
    field.setValue((String) value);
    fireEvent(Events.Update, new FilterEvent(this));
  }
View Full Code Here

    return values.size() == 0 || values.contains(value);
  }

  protected void onCheckChange(MenuEvent be) {
    setActive(isActivatable(), false);
    fireEvent(Events.Update, new FilterEvent(this));
  }
View Full Code Here

    return true;
  }

  protected void onCheckChange(MenuEvent be) {
    setActive(isActivatable(), false);
    fireEvent(Events.Update, new FilterEvent(this));
  }
View Full Code Here

TOP

Related Classes of com.extjs.gxt.ui.client.event.FilterEvent

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.