SMART datagrid v1.4 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.minLengthMessage  property

텍스트 편집기에 지정된 minLength 보다 짧은 텍스트가 입력된 상태에서 편집을 완료할 때 표시되는 메시지. 

alertMinLengthErrortrue로 지정돼야 한다. 메시지 문자열 중에 "${length}"minLength로 대체된다. 

기본값은 "최소 ${length} 문자가 ?�력?�야 ?�니??".

Getter
function minLengthMessage(): String
Setter
function setMinLengthMessage(value: String)
Code -1
    grid.setOptions({
        edit: {
            minLengthMessge: "Too short text !"
        }
    });
Code -2
    grid.setEditOptions({
        minLengthMessge: "Too short text !"
    });
Code -3
    grid.editOptions().setMinLengthMessge("Too short text !");
See Also
alertMinLengthError
TextCellEditor.minLength
TextCellEditor.maxLength
MultilineCellEditor.minLength
MultilineCellEditor.maxLength
Examples
Text Cell Editors
Cell Editing