struct DynFork::Fields::SlugField
- DynFork::Fields::SlugField
- DynFork::Fields::Field
- Struct
- Value
- Object
Overview
Automatically creates a label from letters, numbers, and hyphens.
Convenient to use for Url addresses.
WARNING Allowed field types: HashField, TextField, EmailField, DateField, DateTimeField, I64Field, F64Field.
Defined in:
dynfork/fields/slug.crConstructors
- .new(pull : JSON::PullParser)
- .new(label : String = "", placeholder : String = "", hide : Bool = false, disabled : Bool = false, readonly : Bool = true, ignored : Bool = false, slug_sources : Array(String) = ["hash"], hint : String = "", warning : String = "")
Instance Method Summary
- #choices : Nil
- #choices? : Nil | Nil
- #default : Nil
- #default? : Nil | Nil
-
#field_type : String
Field type - Structure Name.
-
#group : UInt8
To optimize field traversal in the
paladins/check()
method. -
#input_type : String | Nil
Html tag: input type="text".
-
#input_type? : String | Nil | Nil
Html tag: input type="text".
- #max : Nil
- #max? : Nil | Nil
- #maxlength : Nil
- #maxlength? : Nil | Nil
- #maxsize : Float32
- #media_root : String
- #media_url : String
- #min : Nil
- #min? : Nil | Nil
- #minlength : Nil
- #minlength? : Nil | Nil
- #multiple? : Bool
-
#placeholder : String
Displays prompt text.
-
#readonly=(readonly : Bool)
Specifies that the field cannot be modified by the user.
-
#readonly? : Bool
Specifies that the field cannot be modified by the user.
-
#refrash_val_str(val : String) : Nil
For the
DynFork::QPaladins::Tools#refrash_fields
method. - #regex : Nil
- #regex? : Nil | Nil
- #regex_err_msg : Nil
- #regex_err_msg? : Nil | Nil
- #required? : Bool
-
#slug_sources : Array(String)
Getter for 'slug_sources'.
- #target_dir : String
- #thumbnails : Nil
- #thumbnails? : Nil | Nil
-
#unique? : Bool
The unique value of a field in a collection.
- #use_editor? : Bool
-
#value : String | Nil
Sets the value of an element.
-
#value=(value : String | Nil)
Sets the value of an element.
-
#value? : String | Nil | Nil
Sets the value of an element.
Instance methods inherited from struct DynFork::Fields::Field
choices_from_json(json : String) : Nil
choices_from_json,
disabled=(disabled : Bool)
disabled=,
disabled? : Bool
disabled?,
errors : Array(String)
errors,
errors=(errors : Array(String))
errors=,
field_type : String
field_type,
group : UInt8
group,
hide=(hide : Bool)
hide=,
hide? : Bool
hide?,
hint : String
hint,
id : String
id,
id=(id : String)
id=,
ignored? : Bool
ignored?,
label : String
label,
name : String
name,
name=(name : String)
name=,
slug_sources : Array(String)
slug_sources,
warning : String
warning,
warning=(warning : String)
warning=
Constructor methods inherited from struct DynFork::Fields::Field
new(pull : JSON::PullParser)
new
Constructor Detail
Instance Method Detail
To optimize field traversal in the paladins/check()
method.
WARNING It is recommended not to change.