SMART datagrid v1.4 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.alertMinLengthError  property

true면 텍스트 편집기에 지정된 minLength 보다 짧은 텍스트가 입력된 상태에서 편집을 완료하면 경고 메시지를 표시한다. 

기본값은 true.

Getter
function alertMinLengthError(): Boolean
Setter
function setAlertMinLengthError(value: Boolean)
Code -1
    grid.setOptions({
        edit: {
            alertMinLengthError: true
        }
    });
Code -2
    grid.setEditOptions({
        alertMinLengthError: true
    });
Code -3
    grid.editOptions().setAlertMinLengthError(true);
See Also
minLengthMessage
TextCellEditor.minLength
TextCellEditor.maxLength
MultilineCellEditor.minLength
MultilineCellEditor.maxLength
Examples
Text Cell Editors
Cell Editing