Sha256: 5cada2984826e4f5744c1f6789066a41fdcb130d81fbde1b7e7eff2e1f323c18

Contents?: true

Size: 1.95 KB

Versions: 12

Compression:

Stored size: 1.95 KB

Contents

PostingField:
    field_label = "Posting"
    xtype       = ":combo"
    name        = "pt_name"
    store       =  Marty::Posting.
                   where("created_dt <> 'infinity'").
                   order("created_dt DESC").limit(10).pluck("name")
    value       = store[0]

######################################################################

PostingField1: PostingField
    field_label = "Posting 1"
    name        = "pt_name1"

PostingField2: PostingField
    field_label = "Posting 2"
    name        = "pt_name2"

######################################################################

ClassListField:
    field_label = "Tables"
    xtype       = ":multiselectcombo"
    name        = "class_list"
    store       = Marty::DataChange.class_list

ClassField: ClassListField
    xtype       = ":combo"
    name        = "class_name"
    store       = Marty::DataChange.class_list

######################################################################

CheckboxField:
    xtype           = ":checkboxfield"
    checked         = false
    input_value     = true
    unchecked_value = false

######################################################################

JsonField:
    xtype       = ":textareafield"
    name        = "json_field"
    field_label = "JSON"
    auto_scroll = true
    spellcheck  = false
    field_style = {
        "font_family": 'courier new',
        "font_size": '12px'
        }
    height      = 400

CsvField: JsonField
    field_label = "CSV"
    name        = "csv_field"

TextField:
    xtype        = ":textfield"
    field_label  = "Text"
    name         = "text_field"

######################################################################

DateField:
    field_label = "Date"
    xtype       = ":datefield"
    name        = "date"
    value       = nil
    format      = 'Y-m-d'

DatetimeField:
    field_label = "Datetime"
    xtype       = ":datetimefield"
    name        = "datetime"
    value       = nil
    format      = 'Y-m-d H:i:s'

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
marty-14.3.0 delorean/fields.dl
marty-14.0.0 delorean/fields.dl
marty-13.0.2 delorean/fields.dl
marty-11.0.0 delorean/fields.dl
marty-10.0.3 delorean/fields.dl
marty-10.0.2 delorean/fields.dl
marty-10.0.0 delorean/fields.dl
marty-9.5.1 delorean/fields.dl
marty-9.5.0 delorean/fields.dl
marty-9.3.3 delorean/fields.dl
marty-9.3.2 delorean/fields.dl
marty-9.3.0 delorean/fields.dl