OPEN_GRID API - v1.3.1
    Preparing search index...

    Type Alias DataType

    DataType:
        | "string"
        | "number"
        | "date"
        | "boolean"
        | "select"
        | "radio"
        | "img"
        | "html"
        | "barcode"

    컬럼이 담는 값의 종류. 이 값 하나로 그리드가 "어떻게 정렬하고, 기본 렌더러로 무엇을 쓰고, 편집기를 무엇으로 열지"를 결정합니다. 지정하지 않으면 문자열처럼 다룹니다. / What kind of value a column holds. This single choice drives how the grid sorts, which default renderer it uses, and which editor it opens. Unset behaves like a string.

    • 'string' : 일반 텍스트. / Plain text.
    • 'number' : 숫자(오른쪽 정렬·숫자 비교·천단위 포맷). / Number (right-aligned, numeric compare, thousand separators).
    • 'date' : 날짜(달력 편집기·날짜 비교). / Date (calendar editor, date compare).
    • 'boolean' : 참/거짓(체크박스 표시). / True/false (rendered as a checkbox).
    • 'select' : 목록에서 하나 선택(드롭다운 편집기). / Single choice from a list (dropdown editor).
    • 'radio' : 같은 그룹 안에서 하나 선택. / Single choice within a radio group.
    • 'img' : 셀 값을 이미지 주소로 보고 그림 표시. / Treat the value as an image URL and show it.
    • 'html' : HTML 문자열을 그대로 렌더(기본 sanitize). / Render an HTML string (sanitized by default).
    • 'barcode' : 값을 바코드 그래픽으로 표시. / Show the value as a barcode graphic.