Cascading Combos가 있는 Blazor Grid
Grid의 편집 기능은 Cascading Combobox 구성 요소를 사용할 수 있는 기회를 제공합니다. 이전 IgbCombo
에서 값을 선택하면 사용자는 다음 Blazor Combobox 구성 요소 내에서 선택과 관련된 데이터만 받게 됩니다.
Angular Grid with Cascading Combos Sample Overview
아래 샘플은 IgbGrid
중첩된 계단식 IgbCombo
구성 요소와 작동하는 방식을 보여줍니다.
Setup
열 편집을 활성화하려면 속성이 로 설정되어 있는지 확인하십시오 Editable
. true
열 편집이 활성화되면 다음을 IgbCombo
추가할 수 있습니다. 여기에서 하나의 단일 선택 항목만 사용하려면 속성 설정을 SingleSelect
사용해야 합니다.
IgbCombo
를 시작하려면 먼저 가져와야 합니다.
builder.Services.AddIgniteUIBlazor(
typeof(IgbGridModule),
typeof(IgbComboModule)
);
그런 다음 콤보를 사용하여 열 템플릿을 정의해야 합니다.
<IgbColumn Field="Country" Header="Country" BodyTemplate="WebGridCountryDropDownTemplate"></IgbColumn>
@code{
public static RenderFragment<IgbCellTemplateContext> WebGridCountryDropDownTemplate = (context) =>
{
var id = "country_" + context.Cell.Id.RowID;
return @<IgbCombo id="@id" Placeholder="Choose Country..." SingleSelect=true ValueKey="Country" DisplayKey="Country" ChangeScript="CountryChange"></IgbCombo>;
};
}
DisplayKey
- 객체 배열에 필수 - 항목의 텍스트에 사용할 속성을 지정합니다. 값이DisplayKey
지정되지 않은 경우 콤보는 지정된ValueKey
(있는 경우)를 사용합니다.
선택 변경을 처리하려면 이벤트가 필요합니다 onChange
. 내보낸 이벤트 인수에는 변경 전 선택 항목, 현재 선택 항목 및 추가되거나 제거된 항목에 대한 정보가 포함됩니다. 따라서 이전 콤보의 선택에 따라 값을 필터링합니다.
//In Javascript
igRegisterScript("CountryChange", (ctx) => {
const value = e.detail.newValue;
cell.update(value);
const nextCombo = document.getElementById("region_" + cell.id.rowID);
const nextProgress = document.getElementById("progress_region_" + cell.id.rowID);
if (value === "") {
nextCombo.deselect(nextCombo.value);
nextCombo.disabled = true;
nextCombo.data = [];
} else {
nextProgress.style.display = "block";
setTimeout(() => {
nextProgress.style.display = "none";
nextCombo.disabled = false;
nextCombo.data = this.regions.filter(x => x.Country === value);
}, 2000);
}
});
마지막으로 데이터 목록을 로드하는 동안 필요한 IgbLinearProgress
를 추가합니다.
public static RenderFragment<IgbCellTemplateContext> WebGridRegionDropDownTemplate = (context) =>
{
var id = "region_" + context.Cell.Id.RowID;
return @<div style="display:flex;flex-direction:column;"><IgbCombo id="@id" Placeholder="Choose Region..." SingleSelect=true ValueKey="Region" DisplayKey="Region" ChangeScript="RegionChange"></IgbCombo><IgbLinearProgress Indeterminate=true></IgbLinearProgress></div>;
};
Known Issues and Limitations
한정 | 설명 |
---|---|
콤보 드롭다운 목록은 다른 UI 요소 뒤에 숨겨질 수 있습니다. | 그리드에 있는 요소의 스택 순서로 인해 콤보 드롭다운이 머리글, 바닥글 등과 같은 다른 요소 뒤에 숨겨질 수 있습니다. |