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.AjaxRequestTarget;
import org.apache.wicket.ajax.IAjaxCallDecorator;
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;
import org.apache.wicket.util.string.AppendingStringBuffer;

/**
* 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 model, Form form)
  {
    super(id, model);
    mForm = form;

    add(new AjaxFormSubmitBehavior(form, "onclick")
    {

      private static final long serialVersionUID = 1L;

      protected void onSubmit(AjaxRequestTarget target)
      {
        AjaxFallbackButton.this.onSubmit(target, mForm);
      }

      protected void onError(AjaxRequestTarget target)
      {
        AjaxFallbackButton.this.onError(target, mForm);
      }

      protected CharSequence getEventHandler()
      {
        return new AppendingStringBuffer(super.getEventHandler()).append("; return false;");
      }

      protected IAjaxCallDecorator getAjaxCallDecorator()
      {
        return AjaxFallbackButton.this.getAjaxCallDecorator();
      }

    });
  }

  /**
   * Listener method invoked on form submit with errors
   *
   * @param target
   * @param form
   *
   * TODO 1.3: Make abstract to be consistent with onsubmit()
   */
  protected void onError(AjaxRequestTarget target, Form form)
  {
    // created to override
  }

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

  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);

  protected IAjaxCallDecorator getAjaxCallDecorator()
  {
    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 isEnabled() && isEnableAllowed();
  }
}
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.