Class EditorProperties
Inheritance
System.Object
EditorProperties
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Assembly: Syncfusion.EJ.dll
Syntax
public class EditorProperties : EJTagHelper
Constructors
EditorProperties()
Declaration
public EditorProperties()
Properties
Change
Fires when the Editor value changes,
Declaration
[JsonProperty("change")]
public string Change { get; set; }
Property Value
Type |
Description |
System.String |
|
Create
Fires once the Editor control created successfully
Declaration
[JsonProperty("create")]
public string Create { get; set; }
Property Value
Type |
Description |
System.String |
|
CssClass
Sets the root CSS class for Editors which allow us to customize the appearance.
Declaration
[JsonProperty("cssClass")]
public string CssClass { get; set; }
Property Value
Type |
Description |
System.String |
|
CurrencySymbol
Specifies the currency symbol for currency textbox
Declaration
[JsonProperty("currencySymbol")]
public string CurrencySymbol { get; set; }
Property Value
Type |
Description |
System.String |
|
DecimalPlaces
Specifies the number of digits that should be allowed after the decimal point
Declaration
[JsonProperty("decimalPlaces")]
public int DecimalPlaces { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Destroy
Fires when destroy the Editor
Declaration
[JsonProperty("destroy")]
public string Destroy { get; set; }
Property Value
Type |
Description |
System.String |
|
Enabled
specifies the state of the editor
Declaration
[JsonProperty("enabled")]
public bool Enabled { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
EnablePersistence
Specify the enablePersistence to editor to save current editor control value to browser cookies for state maintenance.
Declaration
[JsonProperty("enablePersistence")]
public bool EnablePersistence { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
EnableRTL
Specifies the Right to Left Direction to editor.
Declaration
[JsonProperty("enableRTL")]
public bool EnableRTL { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
EnableStrictMode
When enableStrictMode true it allows the value outside of the range also but it highlights the textbox with error class,otherwise it internally changed to the correct value.
Declaration
[JsonProperty("enableStrictMode")]
public bool EnableStrictMode { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
FocusIn
Fires when Focus in to the Editor control
Declaration
[JsonProperty("focusIn")]
public string FocusIn { get; set; }
Property Value
Type |
Description |
System.String |
|
FocusOut
Fires when leave out from the Editor
Declaration
[JsonProperty("focusOut")]
public string FocusOut { get; set; }
Property Value
Type |
Description |
System.String |
|
GroupSeparator
It provides the options to get the customized character to separate the digits. If not set, the separator defined by the current culture.
Declaration
[JsonProperty("groupSeparator")]
public string GroupSeparator { get; set; }
Property Value
Type |
Description |
System.String |
|
GroupSize
Specifies the number of digits in each group to the editor
Declaration
[JsonProperty("groupSize")]
public string GroupSize { get; set; }
Property Value
Type |
Description |
System.String |
|
Height
Specifies the height of the editor.
Declaration
[JsonProperty("height")]
public string Height { get; set; }
Property Value
Type |
Description |
System.String |
|
HtmlAttributes
specifies the HTML Attributes of the editor
Declaration
[JsonProperty("htmlAttributes")]
public IDictionary<string, object> HtmlAttributes { get; set; }
Property Value
Type |
Description |
System.Collections.Generic.IDictionary<System.String, System.Object> |
|
IncrementStep
The Editor value increment or decrement based an incrementStep value
Declaration
[JsonProperty("incrementStep")]
public double IncrementStep { get; set; }
Property Value
Type |
Description |
System.Double |
|
IsFor
Declaration
[JsonIgnore]
public bool IsFor { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Locale
Defines the localization culture for editor.
Declaration
[JsonProperty("locale")]
public string Locale { get; set; }
Property Value
Type |
Description |
System.String |
|
MaxValue
Specifies the maximum value of the editor.
Declaration
[JsonProperty("maxValue")]
public double MaxValue { get; set; }
Property Value
Type |
Description |
System.Double |
|
MinValue
Specifies the minimum value of the editor.
Declaration
[JsonProperty("minValue")]
public double MinValue { get; set; }
Property Value
Type |
Description |
System.Double |
|
Name
Specifies the name of the editor.
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
Type |
Description |
System.String |
|
NegativePattern
Specifies the pattern for formatting negative values in editor
Declaration
[JsonProperty("negativePattern")]
public string NegativePattern { get; set; }
Property Value
Type |
Description |
System.String |
|
PositivePattern
Specifies the pattern for formatting positive values in editor
Declaration
[JsonProperty("positivePattern")]
public string PositivePattern { get; set; }
Property Value
Type |
Description |
System.String |
|
ReadOnly
Toggles the readonly state of the editor. When the Editor is readonly it doesn’t allow user interactions.
Declaration
[JsonProperty("readOnly")]
public bool ReadOnly { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
ShowRoundedCorner
Specifies to change the sharp edges in to the rounded corner for the editor
Declaration
[JsonProperty("showRoundedCorner")]
public bool ShowRoundedCorner { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Specifies whether the up and down spin buttons should be displayed in editor
Declaration
[JsonProperty("showSpinButton")]
public bool ShowSpinButton { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Tag
Declaration
[JsonIgnore]
public string Tag { get; set; }
Property Value
Type |
Description |
System.String |
|
ValidateOnType
Enables decimal separator position validation on type .
Declaration
[JsonProperty("validateOnType")]
public bool ValidateOnType { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
ValidationMessage
Sets the jQuery validation error message in editor.
Declaration
[JsonProperty("validationMessage")]
public Dictionary<string, object> ValidationMessage { get; set; }
Property Value
Type |
Description |
System.Collections.Generic.Dictionary<System.String, System.Object> |
|
ValidationRules
Sets the jQuery validation rules to the editor
Declaration
[JsonProperty("validationRules")]
public Dictionary<string, object> ValidationRules { get; set; }
Property Value
Type |
Description |
System.Collections.Generic.Dictionary<System.String, System.Object> |
|
Value
Declaration
[JsonProperty("value")]
public object Value { get; set; }
Property Value
Type |
Description |
System.Object |
|
WatermarkText
Specifies the watermark text to editor
Declaration
[JsonProperty("watermarkText")]
public string WatermarkText { get; set; }
Property Value
Type |
Description |
System.String |
|
Width
Specifies the width of the editor.
Declaration
[JsonProperty("width")]
public string Width { get; set; }
Property Value
Type |
Description |
System.String |
|
Methods
GetControlDetails(String)
Declaration
protected override object GetControlDetails(string pluginName)
Parameters
Type |
Name |
Description |
System.String |
pluginName |
|
Returns
Type |
Description |
System.Object |
|
Overrides