struct DynFork::Fields::ColorField

Overview

Field for entering color.
The default value is #000000 (black).
Html input type="text".

WARNING type="color" only seven-character hexadecimal notation.
Examples: #fff | #f2f2f2 | #f2f2f200 | rgb(255,0,24) | rgba(255,0,24,0.5) | rgba(#fff,0.5) | hsl(120,100%,50%) | hsla(170,23%,25%,0.2) | 0x00ffff

Defined in:

dynfork/fields/color.cr

Constructors

Instance Method Summary

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=, readonly=(readonly : Bool) readonly=, readonly? : Bool readonly?, required? : Bool required?, 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

def self.new(pull : JSON::PullParser) #

Field for entering color.
The default value is #000000 (black).
Html input type="text".

WARNING type="color" only seven-character hexadecimal notation.
Examples: #fff | #f2f2f2 | #f2f2f200 | rgb(255,0,24) | rgba(255,0,24,0.5) | rgba(#fff,0.5) | hsl(120,100%,50%) | hsla(170,23%,25%,0.2) | 0x00ffff


[View source]
def self.new(label : String = "", default : String | Nil = "#000000", placeholder : String = "", maxlength : UInt32 | Nil = 256, hide : Bool = false, unique : Bool = false, required : Bool = false, disabled : Bool = false, readonly : Bool = false, ignored : Bool = false, hint : String = I18n.t("examples.interpolation", samples: (("#fff | #f2f2f2 | #f2f2f200 | " + "rgb(255,0,24) | rgba(255,0,24,0.5) | ") + "rgba(#fff,0.5) | hsl(120,100%,50%) | ") + "hsla(170,23%,25%,0.2) | 0x00ffff")) #

[View source]

Instance Method Detail

def default : String | Nil #

The default value is #000000.


[View source]
def default? : String | Nil | Nil #

The default value is #000000.


[View source]
def field_type : String #

Field type - Structure Name.


[View source]
def group : UInt8 #

To optimize field traversal in the paladins/check() method.

WARNING It is recommended not to change.


[View source]
def input_type : String | Nil #

Html tag: input type="color".
By default type="text".

WARNING type="color" only seven-character hexadecimal notation.


[View source]
def input_type? : String | Nil | Nil #

Html tag: input type="color".
By default type="text".

WARNING type="color" only seven-character hexadecimal notation.


[View source]
def maxlength : UInt32 | Nil #

The maximum number of characters allowed in the text.


[View source]
def maxlength? : UInt32 | Nil | Nil #

The maximum number of characters allowed in the text.


[View source]
def minlength : UInt32 | Nil #

The minimum number of characters allowed in the text.


[View source]
def minlength? : UInt32 | Nil | Nil #

The minimum number of characters allowed in the text.


[View source]
def placeholder : String #

Displays prompt text.


[View source]
def placeholder=(placeholder : String) #

Displays prompt text.


[View source]
def refrash_val_str(val : String) : Nil #

[View source]
def unique? : Bool #

The unique value of a field in a collection.


[View source]
def value : String | Nil #

Sets the value of an element.


def value=(value : String | Nil) #

Sets the value of an element.


[View source]
def value? : String | Nil | Nil #

Sets the value of an element.