PasswordCellEditor
Editor for entering passwords
Signature:
export interface PasswordCellEditor extends TextCellEditor
Extends: TextCellEditor
Remarks
The entered values are displayed as *
.
Inherits TextCellEditor.
[Superclass]
Example
//string type
column.editor = "password"
// object type
column.editor = { type: "password", maxLength: 6}
Properties
Property | Type | Description |
---|---|---|
type | 'password' | Cell Editor Type: Password |
Properties Desc
type
Cell editor type: Password
Type
- 'password'