Completed
Last Updated: 19 Jan 2024 12:57 by ADMIN
Release 5.1.0 (31 Jan 2024) (R1 2024)
Created by: Van
Comments: 0
Category: TextArea
Type: Feature Request
11

I would like to remove the resize handle and not let users change the size of the textarea.

---

ADMIN EDIT

A solution in the meantime can be done with CSS:

<style>
    .no-resize.k-textarea > .k-input {
        resize: none;
    }
</style>

<TelerikTextArea @bind-Value="@taVal" Class="no-resize"></TelerikTextArea>

@code{
    string taVal { get; set; } = "lorem\nipsum";
}

---

Completed
Last Updated: 04 Aug 2023 12:01 by ADMIN
Release 4.5.0 (08/30/2023) (R3 PI2)
Created by: René
Comments: 5
Category: TextArea
Type: Feature Request
9

There should be a counter displayed like this

"n:m" With n = currentNumberOfCharacters and m = allowedNumberOfCharacters.

Completed
Last Updated: 10 Jul 2023 10:46 by ADMIN
Release 4.4.0 (07/19/2023) (R3 PI1)

First, let me thank you for adding the Width in the latest update (2.21). Much appreciated! 

https://www.w3schools.com/tags/tag_textarea.asp

 

We need a fixed height for our text areas to encourage user-interaction and ease the UX for the end user. Having (now a wide), but very narrow description field is not ideal and since it's basically a feature of HTML5, I don't see why it be exempt from Blazor UI.

<TelerikTextArea Rows="10" Width="100%" />

 

 

 

Completed
Last Updated: 08 Jan 2021 08:50 by ADMIN
Release 2.21.0
Created by: René
Comments: 8
Category: TextArea
Type: Feature Request
18
We need to be able to change the width of the TextArea component.