Radzen datagrid black borders on focus

Hi
whenever I am using arrow keys to navigate through the grid rows, a black border comes around the grid.
Is there a way to remove this?

Although this is not recommended (because of accessibility), you can remove the outline via CSS:

<RadzenDataGrid Style="--rz-grid-focus-outline: none">

The black border is still appearing

@user3434 please give us some context and steps to reproduce e.g. browser and theme in use, the datagrid config etc. Also, is this reproducible in the online demos when you add Style="--rz-grid-focus-outline: none" via the Edit Source tab in the demo?

Yes, It is reproduceable in the online demos as well



I've added the style you have provided to this and you can still see the black border in bottom and side parts when navigating through rows using keys

Thanks! Managed to reproduce it under Edge. The following style should resolve it until we release a fix:

<style>
    .rz-data-grid-data {
        outline: none;
    }
</style>

You can omit the Style="--rz-grid-focus-outline: none"

1 Like