Search in sources :

Example 1 with FieldNode

use of com.codename1.rad.nodes.FieldNode in project CodeRAD by shannah.

the class UI method radio.

public static FieldNode radio(Attribute... atts) {
    FieldNode fieldNode = new FieldNode(atts);
    fieldNode.setAttributes(RADIO);
    return fieldNode;
}
Also used : FieldNode(com.codename1.rad.nodes.FieldNode)

Example 2 with FieldNode

use of com.codename1.rad.nodes.FieldNode in project CodeRAD by shannah.

the class UI method checkboxListY.

public static FieldNode checkboxListY(Attribute... atts) {
    FieldNode fieldNode = checkboxList(atts);
    fieldNode.setAttributes(buttonListY());
    return fieldNode;
}
Also used : FieldNode(com.codename1.rad.nodes.FieldNode)

Example 3 with FieldNode

use of com.codename1.rad.nodes.FieldNode in project CodeRAD by shannah.

the class UI method checkbox.

public static FieldNode checkbox(Attribute... atts) {
    FieldNode fieldNode = new FieldNode(atts);
    fieldNode.setAttributes(CHECKBOX);
    return fieldNode;
}
Also used : FieldNode(com.codename1.rad.nodes.FieldNode)

Example 4 with FieldNode

use of com.codename1.rad.nodes.FieldNode in project CodeRAD by shannah.

the class UI method radioListY.

public static FieldNode radioListY(Attribute... atts) {
    FieldNode out = radioList(atts);
    out.setAttributes(buttonListY());
    return out;
}
Also used : FieldNode(com.codename1.rad.nodes.FieldNode)

Example 5 with FieldNode

use of com.codename1.rad.nodes.FieldNode in project CodeRAD by shannah.

the class UI method htmlComponent.

public static FieldNode htmlComponent(Attribute... atts) {
    FieldNode fieldNode = new FieldNode(atts);
    fieldNode.setAttributes(HTML_COMPONENT);
    return fieldNode;
}
Also used : FieldNode(com.codename1.rad.nodes.FieldNode)

Aggregations

FieldNode (com.codename1.rad.nodes.FieldNode)25 Attribute (com.codename1.rad.models.Attribute)3 Entity (com.codename1.rad.models.Entity)3 LabelPropertyView (com.codename1.rad.propertyviews.LabelPropertyView)2 SpanLabelPropertyView (com.codename1.rad.propertyviews.SpanLabelPropertyView)2 TextAreaPropertyView (com.codename1.rad.propertyviews.TextAreaPropertyView)2 TextFieldPropertyView (com.codename1.rad.propertyviews.TextFieldPropertyView)2 SpanLabel (com.codename1.components.SpanLabel)1 Columns (com.codename1.rad.attributes.Columns)1 PropertyImageRendererAttribute (com.codename1.rad.attributes.PropertyImageRendererAttribute)1 PropertySelectorAttribute (com.codename1.rad.attributes.PropertySelectorAttribute)1 PropertyViewDecoratorAttribute (com.codename1.rad.attributes.PropertyViewDecoratorAttribute)1 Property (com.codename1.rad.models.Property)1 Editable (com.codename1.rad.models.Property.Editable)1 Node (com.codename1.rad.nodes.Node)1 OptionsNode (com.codename1.rad.nodes.OptionsNode)1 PropertyNode (com.codename1.rad.nodes.PropertyNode)1 PropertyViewDecoratorNode (com.codename1.rad.nodes.PropertyViewDecoratorNode)1 PropertyViewFactoryNode (com.codename1.rad.nodes.PropertyViewFactoryNode)1 ButtonListPropertyView (com.codename1.rad.propertyviews.ButtonListPropertyView)1