Examples of markSubmittedForm()


Examples of org.apache.myfaces.tobago.internal.component.AbstractUIPage.markSubmittedForm()

    Map<String, UIComponent> ajaxComponents = AjaxInternalUtils.parseAndStoreComponents(context);
    if (ajaxComponents != null) {
      // first decode the page
      AbstractUIPage page = ComponentUtils.findPage(context);
      page.decode(context);
      page.markSubmittedForm(context);
      FacesContextUtils.setAjax(context, true);

      // decode the action if actionComponent not inside one of the ajaxComponents
      // otherwise it is decoded there
      decodeActionComponent(context, page, ajaxComponents);
View Full Code Here

Examples of org.apache.myfaces.tobago.internal.component.AbstractUIPage.markSubmittedForm()

    Map<String, UIComponent> ajaxComponents = AjaxInternalUtils.parseAndStoreComponents(context);
    if (ajaxComponents != null) {
      // first decode the page
      AbstractUIPage page = ComponentUtils.findPage(context);
      page.decode(context);
      page.markSubmittedForm(context);
      if (context instanceof TobagoFacesContext) {
        ((TobagoFacesContext) context).setAjax(true);
      }
      // decode the action if actionComponent not inside one of the ajaxComponents
      // otherwise it is decoded there
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.