Package org.olat.core.gui.components.form.flexible.elements

Examples of org.olat.core.gui.components.form.flexible.elements.IntegerElement.addActionListener()


    return ie;
  }
 
  public IntegerElement addInlineIntegerElement(String name, int initVal, FormItemContainer formLayout, FormBasicController listener){
    IntegerElement iie = new IntegerElementImpl(name, initVal, true);
    iie.addActionListener(listener, FormEvent.ONCLICK);
    if(listener != null){
      formLayout.add(iie);
    }
    return iie;
  }
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.