List of usage examples for com.vaadin.ui CustomField subclass-usage
From source file de.metas.ui.web.vaadin.window.editor.NumberField.java
/**
*
* @author https://vaadin.com/forum/#!/thread/1402046/2842284
* @author metas-dev <dev@metasfresh.com>
*
*/
From source file eu.maxschuster.vaadin.colorpickerfield.AbstractColorPickerField.java
/**
* A wrapper for {@link AbstractColorPicker}s that implements the {@link Field}.
*
* @author Max Schuster
* @param <COLOR_PICKER> Color picker type to wrap
*/
From source file fr.amapj.view.engine.collectioneditor.CollectionEditor.java
/**
* Permet la saisie de multi valeur dans un tableau
* en lien avec un BeanItem
*
* A noter : la collection donne en sortie est totalement independante de la collection
* donne en entre
From source file info.magnolia.filesystembrowser.app.field.FileBrowserField.java
/** * A {@link CustomField}. */ public class FileBrowserField extends CustomField<byte[]> { private Logger log = LoggerFactory.getLogger(FileBrowserField.class);
From source file info.magnolia.ui.contentapp.field.TextAndContentViewField.java
/**
* A base custom field allowing to display a {@link WorkbenchView} and a TextField.
* <ul>
* <li>Text field can be hidden or placed on top or button.
* <li>This field is mainly used to perform some selection in a list and to put the selected value into the text input field.
* </ul>
From source file info.magnolia.ui.contentapp.field.WorkbenchField.java
/** * Wraps a workbench instance into a field. While it is quite useful in dialogs the users are discouraged * from using it in a form. */ public class WorkbenchField extends CustomField<Object> {
From source file info.magnolia.ui.form.field.AbstractCustomMultiField.java
/**
* Abstract implementation of {@link CustomField} used for multi fields components.<br>
* It expose generic methods allowing to: <br>
* - Build a {@link Field} based on a {@link ConfiguredFieldDefinition}. <br>
* - Retrieve the list of Fields contained into the main component <br>
* - Override Validate and get Error Message in order to include these call to the embedded Fields.<br>
From source file info.magnolia.ui.form.field.CheckBoxField.java
/** * A field wrapper for a single CheckBox, supporting the FormLayout-managed (left) caption. */ public class CheckBoxField extends CustomField<Boolean> { private CheckBox checkBox;
From source file info.magnolia.ui.form.field.LinkField.java
/** * A base custom field comprising a text field and a button placed to its immediate right. * A {@link PropertyTranslator} can be set in order to have a different display and property stored. * For example, display can be the Item path and value stored is the identifier of the Item. */ public class LinkField extends CustomField<String> {
From source file info.magnolia.ui.form.field.PasswordFields.java
/** * A base custom field displaying one ore two Password Fields. * Implement the Logic to check the validity of typed passwords. */ public class PasswordFields extends CustomField<String> {