Search in sources :

Example 21 with FieldNode

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

the class UI method switchListY.

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

Example 22 with FieldNode

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

the class UI method toggleSwitch.

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

Example 23 with FieldNode

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

the class UI method textArea.

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

Example 24 with FieldNode

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

the class UI method switchList.

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

Example 25 with FieldNode

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

the class UI method table.

public static FieldNode table(Attribute... atts) {
    FieldNode fieldNode = new FieldNode(atts);
    fieldNode.setAttributes(TABLE);
    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