Declined
Last Updated: 12 Mar 2022 19:42 by ADMIN
Jstemper
Created on: 24 Jan 2022 15:15
Category: UI for Blazor
Type: Bug Report
0
After the upgrade to 3.0 the auto size feature of TextArea when used inside the Window component no longer works.

After the upgrade to 3.0 the auto size feature of TextArea when used inside the Window component no longer works.

 

2 comments
ADMIN
Marin Bratanov
Posted on: 12 Mar 2022 19:42

Hello,

It looks like there have been several weeks without activity on this thread and so it seems that the issue was likely something specific in the project related to errors or how js interop files are referenced. Thus, I am going to mark this as "declined", because it does not seem to be a bug in the component. In case new information comes to light, feel free to add it and it can be reopened.

 

Regards,
Marin Bratanov
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

ADMIN
Marin Bratanov
Posted on: 30 Jan 2022 12:47

Hi,

The following snippet seems to work for me with the 3.0.0 version. Could you try it in a new project?

 

<TelerikWindow Visible="true" Width="300px" Height="300px">
    <WindowTitle>type in the textarea and press enter</WindowTitle>
    <WindowContent>
        <TelerikTextArea @bind-Value="@TextAreaValue"
                         AutoSize="true">
        </TelerikTextArea>

        <br />

        @TextAreaValue


    </WindowContent>
</TelerikWindow>

@code {
    public string TextAreaValue { get; set; }
}

If you get errors, are they fixable with this: https://docs.telerik.com/blazor-ui/troubleshooting/js-errors?

If not, could you attach here a simple runnable project that shows the problem you are facing?

Regards,
Marin Bratanov
Progress Telerik

Learn about the important changes coming in UI for Blazor 3.0 in January 2022!