Class EditorPropertiesBase
Inherited Members
Namespace: Syncfusion.JavaScript
Assembly: Syncfusion.EJ.dll
Syntax
public class EditorPropertiesBase : PropertiesBase
Constructors
EditorPropertiesBase()
Initializes a new instance of the EditorPropertiesBuilder class.
Declaration
public EditorPropertiesBase()
Fields
value
Declaration
public string value
Field Value
| Type | Description |
|---|---|
| System.String |
Properties
Change
Event triggers after the control value gets changed.
Declaration
[JsonProperty("change")]
public string Change { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The change. |
DecimalPlaces
Specifies the decimal places to set the decimal(floating point) numbers.
Declaration
[JsonProperty("decimalPlaces")]
public int DecimalPlaces { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | The decimalPlaces. |
Enabled
Specifies whether to enable or disable the control.
Declaration
[JsonProperty("enabled")]
public bool Enabled { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
EnablePersistence
Specifies to maintain the current model value to browser cookies for state maintenance. While refresh the page, the model value will get apply to the control from browser cookies.
Declaration
[JsonProperty("enablePersistence")]
public bool EnablePersistence { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
EnableStrictMode
Specifies whether to restrict entering the values outside the defined range.
Declaration
[JsonProperty("enableStrictMode ")]
public bool EnableStrictMode { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
FocusIn
Event triggers after the control gets focused.
Declaration
[JsonProperty("focusIn")]
public string FocusIn { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The change. |
FocusOut
Event triggers after the control gets focus out.
Declaration
[JsonProperty("focusOut")]
public string FocusOut { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The change. |
IncrementStep
Specifies the step value for incrementation.
Declaration
[JsonProperty("incrementStep")]
public int IncrementStep { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | The increment step. |
MaximumValue
Specify the maximum value.
Declaration
[JsonProperty("maxValue")]
public double MaximumValue { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Double | The maximum value. |
MinimumValue
Specify the minimum value.
Declaration
[JsonProperty("minValue")]
public double MinimumValue { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Double | The minimum value. |
Name
Specifies the name of the control.
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The name. |
ReadOnly
Specifies whether the control is read only to disable typing the value manually rather than updating by spin button.
Declaration
[JsonProperty("readOnly")]
public bool ReadOnly { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
ShowSpinButton
Specifies whether to show the spin button for incremention and decremention of the value.
Declaration
[JsonProperty("showSpinButton")]
public bool ShowSpinButton { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
Value
Specifies the value.
Declaration
[JsonProperty("value")]
[CLSCompliant(false)]
public string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The value. |
WatermarkText
Specifies the watermark text of the control.
Declaration
[JsonProperty("watermarkText")]
public string WatermarkText { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The water mark text. |