question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

fix: I can not use arrow keys in FluentTextArea inside a FluentDataGrid

See original GitHub issue

🐛 Bug Report

I can not use arrow keys in FluentTextArea inside a FluentDataGrid. It works perfectly outside a FluentDataGrid

💻 Repro or Code Sample

<FluentDataGrid RowsData="@people">
    <TemplateColumn Title="TextArea">
        <FluentTextArea @bind-Value=value1></FluentTextArea>
    </TemplateColumn>
</FluentDataGrid>

@code {
    string value1;

    record Person(int PersonId, string Name, DateOnly BirthDate);

    IQueryable<Person> people = new[]
    {
        new Person(10895, "Jean Martin", new DateOnly(1985, 3, 16)),
        new Person(10944, "António Langa", new DateOnly(1991, 12, 1)),
        new Person(11203, "Julie Smith", new DateOnly(1958, 10, 10)),
    }.AsQueryable();
}

Issue Analytics

  • State:closed
  • Created 4 months ago
  • Comments:8 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
vnbaaijcommented, Jun 6, 2023

A fix had just been submitted for this: https://github.com/microsoft/fast/pull/6754. We have to get it in the right branch and pushed to the Fluent script and then test it, so might still take some time.

0reactions
Ogglascommented, Jun 5, 2023

Thanks anyway! Created a new issue to track the bug: https://github.com/microsoft/fluentui-blazor/issues/435

Can FAST solve it on their side?

Read more comments on GitHub >

github_iconTop Results From Across the Web

fix: keyboard navigation not working anymore in nested ...
There is a bug where the row moves focus when a cell's internal queue is active if arrow key events from the cell...
Read more >
Arrow keys not working in input and textarea
First isolate the problem by removing succesive js files until arrow keys work again - than come back with the results. – WTK....
Read more >
Solved: Re: Arrow Keys Not Functioning in Text Fields
Hi Erin, here is my ticket #: 05711630 I have a video in the ticket ... field and then try and use the...
Read more >
Problem navigating with arrow keys linearly through ...
It appears that if I click through it goes linearly every time without skipping screens. So the problem is only with the arrow...
Read more >
Arrow keys not working for navigation in certain situations
Arrow keys not working for navigation in certain situations. I use CTRL + arrow left and right to navigate between words while coding,...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found