Class CheckBox
Inheritance
Namespace: Syncfusion.EJ2.Buttons
Assembly: Syncfusion.EJ2.dll
Syntax
public class CheckBox : EJTagHelper
Constructors
CheckBox()
Declaration
public CheckBox()
Properties
Change
Triggers when the CheckBox state has been changed by user interaction.
Declaration
public string Change { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
Checked
Specifies a value that indicates whether the CheckBox is checked
or not.
When set to true
, the CheckBox will be in checked
state.
Declaration
public bool Checked { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false |
Created
Triggers once the component rendering is completed.
Declaration
public string Created { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
CssClass
Defines class/multiple classes separated by a space in the CheckBox element. You can add custom styles to the CheckBox by using this property.
Declaration
public string CssClass { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
Disabled
Specifies a value that indicates whether the CheckBox is disabled
or not.
When set to true
, the CheckBox will be in disabled
state.
Declaration
public bool Disabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false |
EnableHtmlSanitizer
Specifies whether to enable the rendering of untrusted HTML values in the CheckBox component. If 'enableHtmlSanitizer' set to true, the component will sanitize any suspected untrusted strings and scripts before rendering them.
Declaration
public bool EnableHtmlSanitizer { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is true |
EnablePersistence
Enable or disable persisting component's state between page reloads.
Declaration
public bool EnablePersistence { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false |
EnableRtl
Enable or disable rendering component in right to left direction.
Declaration
public bool EnableRtl { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false |
For
Declaration
public override ModelExpression For { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression |
Overrides
HtmlAttributes
You can add the additional html attributes such as disabled, value etc., to the element. If you configured both property and equivalent html attribute then the component considers the property value.
Declaration
public object HtmlAttributes { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The default value is null |
Indeterminate
Specifies a value that indicates whether the CheckBox is in indeterminate
state or not.
When set to true
, the CheckBox will be in indeterminate
state.
Declaration
public bool Indeterminate { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false |
Label
Defines the caption for the CheckBox, that describes the purpose of the CheckBox.
Declaration
public string Label { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
LabelPosition
Positions label before
/after
the CheckBox.
The possible values are:
Before - The label is positioned to left of the CheckBox.
After - The label is positioned to right of the CheckBox.
Declaration
public LabelPosition LabelPosition { get; set; }
Property Value
Type | Description |
---|---|
LabelPosition | The default value is LabelPosition.After |
Locale
Overrides the global culture and localization value for this component. Default global culture is 'en-US'.
Declaration
public string Locale { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
Name
Defines name
attribute for the CheckBox.
It is used to reference form data (CheckBox value) after a form is submitted.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
Value
Defines value
attribute for the CheckBox.
It is a form data passed to the server when submitting the form.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |