Package org.exoplatform.webui.core

Examples of org.exoplatform.webui.core.UIDropDownControl


      {
         itemOptions.add(new SelectItemOption(itemCategory.getName()));
      }

      // modify: Dang.Tung
      UIDropDownControl uiItemSelector = addChild(UIDropDownControl.class, null, "UIDropDownPageTemp");
      uiItemSelector.setOptions(itemOptions);
      uiItemSelector.setAction("eXo.webui.UIItemSelector.selectPageLayout");
      // end modify
   }
View Full Code Here


   // Just for using UIDropDownControl correctly.
   public static class SelectItemActionListener extends EventListener<UIDropDownControl>
   {
      public void execute(Event<UIDropDownControl> event) throws Exception
      {
         UIDropDownControl uiDropDown = event.getSource();
         event.getRequestContext().addUIComponentToUpdateByAjax(uiDropDown);
      }
View Full Code Here

   public UIFormInputIconSelector(String name, String bindingField) throws Exception
   {
      super(name, bindingField, String.class);
      setComponentConfig(UIFormInputIconSelector.class, null);
      UIDropDownControl dropIconSet = addChild(UIDropDownControl.class, null, null);
      dropIconSet.setAction("eXo.webui.UIDropDownControl.init");
      this.setValues(paramDefault);
      selectType = "page";
   }
View Full Code Here

   public UIFormInputIconSelector(String name, String bindingField) throws Exception
   {
      super(name, bindingField, String.class);
      setComponentConfig(UIFormInputIconSelector.class, null);
      UIDropDownControl dropIconSet = addChild(UIDropDownControl.class, null, null);
      dropIconSet.setAction("eXo.webui.UIDropDownControl.init");
      this.setValues(paramDefault);
      selectType = "page";
   }
View Full Code Here

    }

    // Just for using UIDropDownControl correctly.
    public static class SelectItemActionListener extends EventListener<UIDropDownControl> {
        public void execute(Event<UIDropDownControl> event) throws Exception {
            UIDropDownControl uiDropDown = event.getSource();
            event.getRequestContext().addUIComponentToUpdateByAjax(uiDropDown);
        }
View Full Code Here

TOP

Related Classes of org.exoplatform.webui.core.UIDropDownControl

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.