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

    Interface FooterDef

    그리드 맨 아래(또는 위) 고정 푸터의 셀 한 칸을 정의합니다. 스크롤과 무관하게 늘 보이는 합계 줄을 만들 때 씁니다. field+op 를 주면 그 컬럼을 집계해 표시하고, label 만 주면 고정 문구를 표시합니다. / Defines one cell of the pinned footer (bottom or top) — an always-visible totals row that stays put while the body scrolls. Give field+op to aggregate a column, or label for fixed text.

    interface FooterDef {
        align?: "left" | "right" | "center";
        colspan?: number;
        field?: string;
        format?: string;
        label?: string;
        op?: SummaryOp;
        renderer?: RendererType | RendererDef;
    }
    Index

    Properties

    align?: "left" | "right" | "center"
    colspan?: number

    이 셀이 오른쪽으로 몇 컬럼을 병합할지 (기본: 1) / How many columns to span rightward (default 1)

    field?: string

    집계할 컬럼의 field(집계 셀일 때). / field of the column to aggregate (for an aggregate cell).

    format?: string

    숫자 포맷 문자열 '#,##0' → 천 단위 콤마, 정수 '#,##0.00' → 천 단위 콤마, 소수 2자리 '0' → 정수 (콤마 없음) '0.00' → 소수 2자리 (콤마 없음) '2' → 소수 2자리 (하위 호환)

    label?: string

    집계 대신 그대로 보여줄 고정 문구(예: '합계'). / Fixed text shown instead of an aggregate (e.g. 'Total').

    op?: SummaryOp

    어떤 집계를 낼지(SUM/AVG/…). / Which aggregate to compute (SUM/AVG/…).

    renderer?: RendererType | RendererDef