Package org.richfaces.component

Examples of org.richfaces.component.DialogCloseEvent


        MethodBinding binding = actionSource.getAction();
        if(!(binding instanceof DialogMethodBinding)) {
          actionSource.setAction(new DialogMethodBinding(binding, (ActionPrefixHolder)component));
        }
       
        DialogCloseEvent dialogEvent = new DialogCloseEvent(component);
       
        if(!UIDialogAction.isServerMode(component)) {
          super.doAjaxDecode(context, component);
        } else {
        Object type = component.getAttributes().get("type");
          if (null == type || ! "reset".equalsIgnoreCase((String)type) ) {
        ActionEvent event;
        event = new ActionEvent(component);
        component.queueEvent(event);
        //no ajax event
      }
        }
    dialogEvent.queue();
  }
View Full Code Here

TOP

Related Classes of org.richfaces.component.DialogCloseEvent

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.