Please note that this control has been deprecated and replaced with the Grid component, and as such, we recommend migrating to that control. This will not be receiving any new features, bug fixes will be deprioritized. For help or questions on migrating your codebase to the Data Grid, please contact support.

    Blazor Grid Highlighting

    Ignite UI for Blazor 행 강조 표시 모양을 구성하는 것을 지원합니다.

    Blazor Grid Highlighting Example

    EXAMPLE
    MODULES
    DATA GENERATOR
    DATA SOURCE
    RAZOR
    CSS

    Like this sample? Get access to our complete Ignite UI for Blazor toolkit and start building your own apps in minutes. Download it for free.

    개요

    Blazor 데이터에서 레코드 강조 표시는 Blazor 그리드의 IsRowHoverEnabled 부울 속성을 설정하여 전환할 수 있습니다. 참고로, 이 기능은 기본적으로 활성화되어 있습니다.

    또한 RowHoverBackground 문자열 속성을 16진수 값으로 설정하여 색상을 구성할 수 있습니다.

    Code Snippet

    다음은 Blazor 데이터 그리드에서 행 강조 표시를 활성화하고 파란색을 적용하는 방법을 보여줍니다.

    <IgbDataGrid Height="100%" Width="100%"
        DataSource="DataSource"
        IsRowHoverEnabled="true"
        RowHoverBackground="#bfbfff" />
    razor

    API References