React Grid 셀 병합
Ignite UI for React 셀 병합을 지원합니다. 특정 열에 대한 인접한 형제 레코드에 동일한 값이 포함되어 있는 경우 옵트인하여 감지할 수 있습니다. 셀이 활성화되지 않았거나 선택되지 않았거나 편집 모드에 있지 않은 경우 값이 셀 전체에 표시됩니다.
React Grid Cell Merging Example
개요
Cell Merging in the React data grid can be configured by using the mergedCellMode option of the entire React grid or individual columns. This property can be set to one of the following options, listed below:
Never: The grid or column will never merge cells. This is the default behavior.Always: The grid or column will always attempt to merge cells.OnlyWhenSorted: The grid or column will only attempt to merge cells when a column is sorted.
이 속성의 값에 관계없이 셀은 형제 레코드 간에만 병합될 수 있습니다.
Cell merging can be evaluated based on whether the data is formatted or not using the mergedCellEvaluationCriteria property. This is applicable to the entire grid or individual columns and can be set to one of the following options, listed below:
RawValue: Merge cells from adjacent rows when the raw values from the cells are the same. This is the default value.FormattedText: Merge cells from adjacent rows when the formatted value from the cells is the same.