New to KendoReactStart a free 30-day trial

MaskedTextBoxHandle

A subclass of React.Component.

Represent the ref of the MaskedTextBox component.

NameTypeDefaultDescription

element

"null" | HTMLInputElement

Gets the element of the MaskedTextBox.

jsx
class App extends React.Component {
constructor(props) {
 super(props);
}
element = null;
render() {
 return (
     <div>
         <MaskedTextBox
             ref={(component) =>
                 this.element = component ? component.element : null}
         />
         <button onClick={() => console.log(this.element)}>console.log the element</button>
     </div>
 );
}
}

ReactDOM.render(
<App />,
document.getElementsByTagName('my-app')[0]
);

name

undefined | string

Gets the name property of the MaskedTextBox.

props

Readonly<MaskedTextBoxProps>

The props of the MaskedTextBoxHandle component.

rawValue

string

Gets the raw value without the mask of the MaskedTextBox.

validity

FormComponentValidity

Represents the validity state into which the MaskedTextBox is set.

value

string

Gets the value with the mask of the MaskedTextBox.

Not finding the help you need?
Contact Support