Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
Ogglas opened this issue Jun 5, 2023 · 2 comments
Labels
area:fast A FAST-specific issue status:blocked Any issue blocked by another

Comments

@Ogglas
Copy link
Contributor

Ogglas commented Jun 5, 2023

馃悰 Bug Report

I can not use arrow keys in FluentTextArea inside a virtualized FluentDataGrid. Original issue: #418. Probably related: microsoft/fast#6500

馃捇 Repro or Code Sample

<FluentDataGrid RowsData="@people" Virtualize="true" RowsDataSize="100">
    <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();
}
@vnbaaij
Copy link
Collaborator

vnbaaij commented Jun 6, 2023

A fix had just been submitted for this: microsoft/fast#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.

@vnbaaij vnbaaij added area:fast A FAST-specific issue status:blocked Any issue blocked by another labels Jan 21, 2024
@vnbaaij
Copy link
Collaborator

vnbaaij commented May 29, 2024

Closing this as it will not be solved in FAST (due to changed policy)

@vnbaaij vnbaaij closed this as completed May 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:fast A FAST-specific issue status:blocked Any issue blocked by another
Projects
None yet
Development

No branches or pull requests

2 participants