Table of Contents

Class InputHTML5Editor

Namespace
Dynamicweb.Content.Items.Editors
Assembly
Dynamicweb.dll

Represents a HTML 5 input editor.

[Editor("Input (HTML 5)")]
public class InputHTML5Editor : Editor, IParameterOptions
Inheritance
InputHTML5Editor
Implements
Inherited Members

Constructors

InputHTML5Editor()

Initializes a new instance of an object.

public InputHTML5Editor()

Properties

Append

[AddInParameter("Append")]
[AddInParameterEditor(typeof(TextParameterEditor), "inputClass=std editor-parameter")]
public string? Append { get; set; }

Property Value

string

Autocomplete

[AddInParameter("Autocomplete")]
[AddInParameterEditor(typeof(YesNoParameterEditor), "inputClass=std editor-parameter")]
public bool Autocomplete { get; set; }

Property Value

bool

DataType

Gets the data type for this editor.

public override Type DataType { get; }

Property Value

Type

InputType

[AddInParameter("Type")]
[AddInParameterEditor(typeof(DropDownParameterEditor), "inputClass=std editor-parameter")]
public string? InputType { get; set; }

Property Value

string

Max

[AddInParameter("Max")]
[AddInParameterEditor(typeof(TextParameterEditor), "inputClass=std editor-parameter")]
public string? Max { get; set; }

Property Value

string

Min

[AddInParameter("Min")]
[AddInParameterEditor(typeof(TextParameterEditor), "inputClass=std editor-parameter")]
public string? Min { get; set; }

Property Value

string

Pattern

[AddInParameter("Pattern")]
[AddInParameterEditor(typeof(TextParameterEditor), "inputClass=std editor-parameter")]
public string? Pattern { get; set; }

Property Value

string

Placeholder

[AddInParameter("Placeholder")]
[AddInParameterEditor(typeof(TextParameterEditor), "inputClass=std editor-parameter")]
public string? Placeholder { get; set; }

Property Value

string

Required

[AddInParameter("Required")]
[AddInParameterEditor(typeof(YesNoParameterEditor), "inputClass=std editor-parameter")]
public bool Required { get; set; }

Property Value

bool

Size

[AddInParameter("Size")]
[AddInParameterEditor(typeof(TextParameterEditor), "inputClass=std editor-parameter")]
public string? Size { get; set; }

Property Value

string

Step

[AddInParameter("Step")]
[AddInParameterEditor(typeof(TextParameterEditor), "inputClass=std editor-parameter")]
public string? Step { get; set; }

Property Value

string
To top