Examples of AjaxRequestTarget


Examples of org.apache.wicket.ajax.AjaxRequestTarget

   *            page on which ajax response is made
   * @return non-null ajax request target instance
   */
  public AjaxRequestTarget newAjaxRequestTarget(final Page page)
  {
    return new AjaxRequestTarget(page);
  }
View Full Code Here

Examples of org.apache.wicket.ajax.AjaxRequestTarget

   *            page on which ajax response is made
   * @return non-null ajax request target instance
   */
  public AjaxRequestTarget newAjaxRequestTarget(final Page page)
  {
    return new AjaxRequestTarget(page);
  }
View Full Code Here

Examples of org.apache.wicket.ajax.AjaxRequestTarget

    }


    if (((WebRequest)getRequest()).isAjax())
    {
      final AjaxRequestTarget target = getRequestCycle().find(AjaxRequestTarget.class);
      visitChildren(FormComponent.class, new IVisitor<FormComponent<?>, Void>()
      {
        @Override
        public void component(FormComponent<?> component, IVisit<Void> visit)
        {
View Full Code Here

Examples of org.apache.wicket.ajax.AjaxRequestTarget

   *            page on which ajax response is made
   * @return non-null ajax request target instance
   */
  public final AjaxRequestTarget newAjaxRequestTarget(final Page page)
  {
    AjaxRequestTarget target = getAjaxRequestTargetProvider().get(page);
    for (AjaxRequestTarget.IListener listener : ajaxRequestTargetListeners)
    {
      target.addListener(listener);
    }
    return target;
  }
View Full Code Here

Examples of org.apache.wicket.ajax.AjaxRequestTarget

   *            page on which ajax response is made
   * @return non-null ajax request target instance
   */
  public final AjaxRequestTarget newAjaxRequestTarget(final Page page)
  {
    AjaxRequestTarget target = getAjaxRequestTargetProvider().get(page);
    for (AjaxRequestTarget.IListener listener : ajaxRequestTargetListeners)
    {
      target.addListener(listener);
    }
    return target;
  }
View Full Code Here

Examples of org.apache.wicket.ajax.AjaxRequestTarget

    implements
      IContextProvider<AjaxRequestTarget, Page>
  {
    public AjaxRequestTarget get(Page context)
    {
      return new AjaxRequestTarget(context);
    }
View Full Code Here

Examples of org.apache.wicket.ajax.AjaxRequestTarget

   *            page on which ajax response is made
   * @return non-null ajax request target instance
   */
  public final AjaxRequestTarget newAjaxRequestTarget(final Page page)
  {
    AjaxRequestTarget target = getAjaxRequestTargetProvider().get(page);
    for (AjaxRequestTarget.IListener listener : ajaxRequestTargetListeners)
    {
      target.addListener(listener);
    }
    return target;
  }
View Full Code Here

Examples of org.apache.wicket.ajax.AjaxRequestTarget

    implements
      IContextProvider<AjaxRequestTarget, Page>
  {
    public AjaxRequestTarget get(Page context)
    {
      return new AjaxRequestTarget(context);
    }
View Full Code Here

Examples of org.apache.wicket.ajax.AjaxRequestTarget

      AjaxLink link = (AjaxLink)linkComponent;

      setupRequestAndResponse(true);
      WebRequestCycle requestCycle = createRequestCycle();
      callOnBeginRequest(requestCycle);
      AjaxRequestTarget target = new AjaxRequestTarget(link.getPage());
      requestCycle.setRequestTarget(target);

      link.onClick(target);

      // process the request target
      processRequestCycle(requestCycle);
    }
    // AjaxFallbackLinks is processed like an AjaxLink if isAjax is true
    // If it's not handling of the linkComponent is passed through to the
    // Link.
    else if (linkComponent instanceof AjaxFallbackLink && isAjax)
    {
      AjaxFallbackLink link = (AjaxFallbackLink)linkComponent;

      setupRequestAndResponse(true);
      WebRequestCycle requestCycle = createRequestCycle();
      AjaxRequestTarget target = new AjaxRequestTarget(link.getPage());
      requestCycle.setRequestTarget(target);

      link.onClick(target);

      // process the request target
View Full Code Here

Examples of org.apache.wicket.ajax.AjaxRequestTarget

      AjaxLink<?> link = (AjaxLink<?>)linkComponent;

      setupRequestAndResponse(true);
      WebRequestCycle requestCycle = createRequestCycle();
      callOnBeginRequest(requestCycle);
      AjaxRequestTarget target = new AjaxRequestTarget(link.getPage());
      requestCycle.setRequestTarget(target);

      link.onClick(target);

      // process the request target
      processRequestCycle(requestCycle);
    }
    // AjaxFallbackLinks is processed like an AjaxLink if isAjax is true
    // If it's not handling of the linkComponent is passed through to the
    // Link.
    else if (linkComponent instanceof AjaxFallbackLink && isAjax)
    {
      AjaxFallbackLink<?> link = (AjaxFallbackLink<?>)linkComponent;

      setupRequestAndResponse(true);
      WebRequestCycle requestCycle = createRequestCycle();
      AjaxRequestTarget target = new AjaxRequestTarget(link.getPage());
      requestCycle.setRequestTarget(target);

      link.onClick(target);

      // process the request target
View Full Code Here
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.