Interface for a class TextBox
Triggers when the TextBox has focus-out.
Triggers when the content of TextBox has changed and gets focus-out.
EmitType<Object>
Triggers when the TextBox component is created.
EmitType<Object>
Triggers when the TextBox component is destroyed.
Triggers when the TextBox gets focus.
Triggers each time when the value of TextBox has changed.
string
Specifies whether the browser is allow to automatically enter or select a value for the textbox.
By default, autocomplete is enabled for textbox.
Possible values are:
on
- Specifies that autocomplete is enabled.
off
- Specifies that autocomplete is disabled.
string
Specifies the CSS class value that is appended to wrapper of Textbox.
boolean
Enable or disable persisting TextBox state between page reloads. If enabled, the value
state will be persisted.
boolean
Enable or disable rendering component in right to left direction.
boolean
Specifies a Boolean value that indicates whether the TextBox allow user to interact with it.
Specifies the floating label behavior of the TextBox that the placeholder text floats above the TextBox based on the below values. Possible values are:
Never
- The placeholder text should not be float ever.Always
- The placeholder text floats above the TextBox always.Auto
- The placeholder text floats above the TextBox while focusing or enter a value in Textbox. { : }
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.
<input id="textbox" type="text" />
import { TextBox } from '@syncfusion/ej2-inputs';
let textbox: TextBox = new TextBox({
htmlAttributes: { name: "username", type: "password", maxlength:"8" }
});
textbox.appendTo('#textbox');
string
Overrides the global culture and localization value for this component. Default global culture is ‘en-US’.
boolean
Specifies a boolean value that enable or disable the multiline on the TextBox. The TextBox changes from single line to multiline when enable this multiline mode.
string
Specifies the text that is shown as a hint/placeholder until the user focus or enter a value in Textbox. The property is depending on the floatLabelType property.
boolean
Specifies the boolean value whether the TextBox allows user to change the text.
boolean
Specifies a Boolean value that indicates whether the clear button is displayed in Textbox.
string
Specifies the behavior of the TextBox such as text, password, email, etc.
string
Sets the content of the TextBox.
number
| string
Specifies the width of the Textbox component.