계단식 콤보가 포함된 React 그리드

    그리드의 편집 기능은 계단식 콤보 상자 구성 요소를 사용할 수 있는 기회를 제공합니다. 이전 IgrCombo에서 값을 선택하면 사용자는 다음 React Combobox 구성 요소 내에서 선택한 항목과 관련된 데이터만 받게 됩니다.

    Angular Grid with Cascading Combos Sample Overview

    아래 샘플은 IgrGrid 중첩된 Cascading IgrCombo 구성 요소와 작동하는 방식을 보여줍니다.

    Setup

    In order enable column editing, make sure editable property is set to true.

    열 편집이 활성화되면 IgrCombo 추가하여 시작할 수 있습니다. 단 하나의 선택 항목만 사용하려면 singleSelect 속성을 설정해야 합니다.

    import { IgrComboModule, IgrCombo } from 'igniteui-react';
    IgrComboModule.register();
    

    그런 다음 콤보를 사용하여 열 템플릿을 정의해야 합니다.

       <IgrColumn
        field="Country"
        header="Country"
        bodyTemplate={webGridCountryDropDownTemplate}
        name="column1">
        </IgrColumn>
    
        function webGridCountryDropDownTemplate(props: {dataContext: IgrCellTemplateContext}) => {
            var cell = props.dataContext.cell as any;
            if (cell === undefined) {
                return <></>;
            }
            const id = cell.id.rowID;
            const comboId = "country" + id;
            return (
            <>
                <IgrCombo data={countries} ref={comboRefs} change={(x: any, args: any) => {onCountryChange(id, x, args) }} placeholder="Choose Country..." valueKey="Country" displayKey="Country" singleSelect="true" name={comboId}></IgrCombo>
            </>
            );
        }
    
    • displayKey- 객체 배열에 필수 - 항목의 텍스트에 사용될 속성을 지정합니다. displayKey에 값이 지정되지 않으면 콤보는 지정된 valueKey (있는 경우)를 사용합니다.

    선택 변경을 처리하려면 change 이벤트가 필요합니다. 내보낸 이벤트 인수에는 변경 전 선택 항목, 현재 선택 항목, 추가되거나 제거된 항목에 대한 정보가 포함됩니다. 따라서 이전 콤보의 선택을 기준으로 값을 필터링합니다.

        function onCountryChange(rowId: string, cmp: any, args:any) {
            const regionCombo = comboRefCollection.get("region_" + rowId);
           setTimeout(() => {
                const newValue = cmp.value[0];
                if (newValue === undefined) {
                    regionCombo.deselect(regionCombo.value);
                    regionCombo.disabled = true;
                    regionCombo.data = [];
                } else {
                    regionCombo.disabled = false;
                    regionCombo.data = regions.filter(x => x.Country === newValue);
                }
           });
        }
    

    Known Issues and Limitations

    한정 설명
    콤보 드롭다운 목록은 다른 UI 요소 뒤에 숨겨질 수 있습니다. 그리드에 있는 요소의 스택 순서로 인해 콤보 드롭다운이 머리글, 바닥글 등과 같은 다른 요소 뒤에 숨겨질 수 있습니다.

    React Grid API Members