Package org.apache.wicket.ajax.markup.html.form

Source Code of org.apache.wicket.ajax.markup.html.form.AjaxFallbackButton

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.wicket.ajax.markup.html.form;

import org.apache.wicket.ajax.AbstractDefaultAjaxBehavior;
import org.apache.wicket.ajax.AjaxChannel;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.ajax.attributes.AjaxRequestAttributes;
import org.apache.wicket.ajax.form.AjaxFormSubmitBehavior;
import org.apache.wicket.markup.html.form.Button;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.model.IModel;

/**
* An ajax submit button that will degrade to a normal request if ajax is not available or
* javascript is disabled.
*
* @since 1.3
*
* @author Jeremy Thomerson (jthomerson)
* @author Alastair Maw
*
*
*/
public abstract class AjaxFallbackButton extends Button
{
  private static final long serialVersionUID = 1L;

  private final Form<?> mForm;

  /**
   * Construct.
   *
   * @param id
   * @param form
   */
  public AjaxFallbackButton(String id, Form<?> form)
  {
    this(id, null, form);
  }

  /**
   * Construct.
   *
   * @param id
   * @param model
   * @param form
   */
  public AjaxFallbackButton(String id, IModel<String> model, Form<?> form)
  {
    super(id, model);
    mForm = form;

    add(new AjaxFormSubmitBehavior(form, "click")
    {
      private static final long serialVersionUID = 1L;

      @Override
      protected void onSubmit(AjaxRequestTarget target)
      {
        AjaxFallbackButton.this.onSubmit(target, AjaxFallbackButton.this.getForm());
      }

      @Override
      protected void onError(AjaxRequestTarget target)
      {
        AjaxFallbackButton.this.onError(target, AjaxFallbackButton.this.getForm());
      }

      @Override
      protected AjaxChannel getChannel()
      {
        return AjaxFallbackButton.this.getChannel();
      }

      @Override
      public boolean getDefaultProcessing()
      {
        return AjaxFallbackButton.this.getDefaultFormProcessing();
      }

      @Override
      protected void updateAjaxAttributes(AjaxRequestAttributes attributes)
      {
        super.updateAjaxAttributes(attributes);
        AjaxFallbackButton.this.updateAjaxAttributes(attributes);
      }

    });
  }

  protected void updateAjaxAttributes(AjaxRequestAttributes attributes)
  {
  }

  /**
   * Listener method invoked on form submit with errors
   *
   * @param target
   * @param form
   */
  protected abstract void onError(AjaxRequestTarget target, Form<?> form);

  /**
   * @see org.apache.wicket.markup.html.form.IFormSubmittingComponent#onSubmit()
   */
  @Override
  public final void onSubmit()
  {
    if (getRequestCycle().find(AjaxRequestTarget.class) == null)
    {
      onSubmit(null, getForm());
    }
  }

  /**
   *
   * @see org.apache.wicket.markup.html.form.Button#getForm()
   */
  @Override
  public Form<?> getForm()
  {
    return mForm == null ? super.getForm() : mForm;
  }

  /**
   * Callback for the onClick event. If ajax failed and this event was generated via a normal
   * submission, the target argument will be null
   *
   * @param target
   *            ajax target if this linked was invoked using ajax, null otherwise
   * @param form
   */
  protected abstract void onSubmit(final AjaxRequestTarget target, final Form<?> form);

  /**
   * @return the channel that manages how Ajax calls are executed
   * @see AbstractDefaultAjaxBehavior#getChannel()
   * @deprecated Use #updateAjaxAttributes() instead
   */
  @Deprecated
  protected AjaxChannel getChannel()
  {
    return null;
  }

  /**
   * Helper methods that both checks whether the link is enabled and whether the action ENABLE is
   * allowed.
   *
   * @return whether the link should be rendered as enabled
   */
  protected final boolean isButtonEnabled()
  {
    return isEnabledInHierarchy();
  }
}
TOP

Related Classes of org.apache.wicket.ajax.markup.html.form.AjaxFallbackButton

TOP
Copyright © 2018 www.massapi.com. 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.