menu

ASP.NET MVC

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class MaskEditProperties

    Show / Hide Table of Contents

    Class MaskEditProperties

    Inheritance
    System.Object
    EJTagHelper
    MaskEditProperties
    Inherited Members
    EJTagHelper.GetControlDetails(String)
    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()
    Namespace: Syncfusion.JavaScript.Models
    Assembly: Syncfusion.EJ.dll
    Syntax
    public class MaskEditProperties : EJTagHelper

    Constructors

    MaskEditProperties()

    Declaration
    public MaskEditProperties()

    Properties

    Change

    Fires when value changed in mask edit textbox control.

    Declaration
    [JsonProperty("change")]
    public string Change { get; set; }
    Property Value
    Type Description
    System.String

    Create

    Fires after MaskEdit control is created.

    Declaration
    [JsonProperty("create")]
    public string Create { get; set; }
    Property Value
    Type Description
    System.String

    CssClass

    Specify the cssClass to achieve custom theme.

    Declaration
    [JsonProperty("cssClass")]
    public string CssClass { get; set; }
    Property Value
    Type Description
    System.String

    CustomCharacter

    Specify the custom character allowed to entered in mask edit textbox control.

    Declaration
    [JsonProperty("customCharacter")]
    public string CustomCharacter { get; set; }
    Property Value
    Type Description
    System.String

    Destroy

    Fires when the MaskEdit is destroyed successfully.

    Declaration
    [JsonProperty("destroy")]
    public string Destroy { get; set; }
    Property Value
    Type Description
    System.String

    Enabled

    Specify the state of the mask edit textbox control.

    Declaration
    [JsonProperty("enabled")]
    public bool Enabled { get; set; }
    Property Value
    Type Description
    System.Boolean

    EnablePersistence

    Specify the enablePersistence to mask edit textbox to save current model value to browser cookies for state maintains.

    Declaration
    [JsonProperty("enablePersistence")]
    public bool EnablePersistence { get; set; }
    Property Value
    Type Description
    System.Boolean

    FocusIn

    Fires when focused in mask edit textbox control.

    Declaration
    [JsonProperty("focusIn")]
    public string FocusIn { get; set; }
    Property Value
    Type Description
    System.String

    FocusOut

    Fires when focused out in mask edit textbox control.

    Declaration
    [JsonProperty("focusOut")]
    public string FocusOut { get; set; }
    Property Value
    Type Description
    System.String

    Height

    Specifies the height for the mask edit textbox control.

    Declaration
    [JsonProperty("height")]
    public string Height { get; set; }
    Property Value
    Type Description
    System.String

    HidePromptOnLeave

    Specifies whether hide the prompt characters with spaces on blur. Prompt chars will be shown again on focus the textbox.

    Declaration
    [JsonProperty("hidePromptOnLeave")]
    public bool HidePromptOnLeave { get; set; }
    Property Value
    Type Description
    System.Boolean

    HtmlAttributes

    Specifies the list of html attributes to be added to mask edit textbox.

    Declaration
    [JsonProperty("htmlAttributes")]
    public IDictionary<string, object> HtmlAttributes { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IDictionary<System.String, System.Object>

    InputMode

    Specify the inputMode for mask edit textbox control.

    Declaration
    [JsonProperty("inputMode")]
    [JsonConverter(typeof(StringEnumConverter))]
    public InputMode InputMode { get; set; }
    Property Value
    Type Description
    InputMode

    IsFor

    Declaration
    [JsonIgnore]
    public bool IsFor { get; set; }
    Property Value
    Type Description
    System.Boolean

    Keydown

    Fires when keydown in mask edit textbox control.

    Declaration
    [JsonProperty("onKeyDown")]
    public string Keydown { get; set; }
    Property Value
    Type Description
    System.String

    KeyPress

    Fires when key press in mask edit textbox control.

    Declaration
    [JsonProperty("keyPress")]
    public string KeyPress { get; set; }
    Property Value
    Type Description
    System.String

    KeyUp

    Fires when keyup in mask edit textbox control.

    Declaration
    [JsonProperty("keyUp")]
    public string KeyUp { get; set; }
    Property Value
    Type Description
    System.String

    Locale

    Defines the localization culture for mask edit.

    Declaration
    [JsonProperty("locale")]
    public string Locale { get; set; }
    Property Value
    Type Description
    System.String

    MaskFormat

    Specifies the input mask.

    Declaration
    [JsonProperty("maskFormat")]
    public string MaskFormat { get; set; }
    Property Value
    Type Description
    System.String

    Mouseout

    Fires when mouse out in mask edit textbox control.

    Declaration
    [JsonProperty("mouseout")]
    public string Mouseout { get; set; }
    Property Value
    Type Description
    System.String

    Mouseover

    Fires when mouse over in mask edit textbox control.

    Declaration
    [JsonProperty("mouseover")]
    public string Mouseover { get; set; }
    Property Value
    Type Description
    System.String

    Name

    Specifies the name of the MaskEdit Textbox.

    Declaration
    [JsonProperty("name")]
    public string Name { get; set; }
    Property Value
    Type Description
    System.String

    ReadOnly

    Toggles the readonly state of the mask edit textbox. When the mask edit textbox is readonly, it doesn’t allow your input.

    Declaration
    [JsonProperty("readOnly")]
    public bool ReadOnly { get; set; }
    Property Value
    Type Description
    System.Boolean

    ShowError

    Specifies whether the error will show until correct value entered in the mask edit textbox control.

    Declaration
    [JsonProperty("showError")]
    public bool ShowError { get; set; }
    Property Value
    Type Description
    System.Boolean

    ShowPromptChar

    Declaration
    [JsonProperty("showPromptChar")]
    public bool ShowPromptChar { get; set; }
    Property Value
    Type Description
    System.Boolean

    ShowRoundedCorner

    MaskEdit input is displayed in rounded corner style when this property is set to true.

    Declaration
    [JsonProperty("showRoundedCorner")]
    public bool ShowRoundedCorner { get; set; }
    Property Value
    Type Description
    System.Boolean

    Tag

    Declaration
    [JsonIgnore]
    public string Tag { get; set; }
    Property Value
    Type Description
    System.String

    TextAlign

    Specify the text alignment for mask edit textbox control.

    Declaration
    [JsonConverter(typeof(StringEnumConverter))]
    [JsonProperty("textAlign")]
    public TextAlign TextAlign { get; set; }
    Property Value
    Type Description
    TextAlign

    ValidationMessage

    Sets the jQuery validation error message in mask edit. This property works when the widget is present inside the form. Include jquery.validate.min.js plugin additionally.

    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 MaskEdit. This property works when the widget is present inside the form. Include jquery.validate.min.js plugin additionally.

    Declaration
    [JsonProperty("validationRules")]
    public Dictionary<string, object> ValidationRules { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.Dictionary<System.String, System.Object>

    Value

    Specifies the value for the mask edit textbox control.

    Declaration
    [JsonProperty("value")]
    public string Value { get; set; }
    Property Value
    Type Description
    System.String

    WatermarkText

    Specifies the water mark text to be displayed in input text.

    Declaration
    [JsonProperty("watermarkText")]
    public string WatermarkText { get; set; }
    Property Value
    Type Description
    System.String

    Width

    Specifies the width for the mask edit textbox control.

    Declaration
    [JsonProperty("width")]
    public string Width { get; set; }
    Property Value
    Type Description
    System.String

    Methods

    GetControlDetails()

    Declaration
    protected override object GetControlDetails()
    Returns
    Type Description
    System.Object
    Overrides
    EJTagHelper.GetControlDetails()
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved