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:
- Created 4 months ago
- Comments:8 (3 by maintainers)
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

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.
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?