Completed
Last Updated: 19 Jan 2024 12:57 by ADMIN
Release 5.1.0 (31 Jan 2024) (R1 2024)
Van
Created on: 24 Jul 2021 08:25
Category: TextArea
Type: Feature Request
11
Ability to disable resizing

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";
}

---

0 comments