Sha256: c767af21276d13bdceb1b457889d0fcbe0fdd52d7c7c6e1b4ed9f5105b479cad

Contents?: true

Size: 1.58 KB

Versions: 39

Compression:

Stored size: 1.58 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"

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
marty-2.7.3 delorean/marty_fields.dl
marty-2.7.2 delorean/marty_fields.dl
marty-2.7.1 delorean/marty_fields.dl
marty-2.7.0 delorean/marty_fields.dl
marty-2.6.8 delorean/marty_fields.dl
marty-2.6.7 delorean/marty_fields.dl
marty-2.6.6 delorean/marty_fields.dl
marty-2.6.5 delorean/marty_fields.dl
marty-2.6.4 delorean/marty_fields.dl
marty-2.6.3 delorean/marty_fields.dl
marty-2.6.2 delorean/marty_fields.dl
marty-2.6.1 delorean/marty_fields.dl
marty-2.6.0 delorean/marty_fields.dl
marty-2.5.9 delorean/marty_fields.dl
marty-2.5.8 delorean/marty_fields.dl
marty-2.5.7 delorean/marty_fields.dl
marty-2.5.6 delorean/marty_fields.dl
marty-2.5.5 delorean/marty_fields.dl
marty-2.5.4 delorean/marty_fields.dl