Unplanned
Last Updated: 09 Nov 2021 08:16 by ADMIN
Van
Created on: 24 Jul 2021 08:25
Category: TextArea
Type: Feature Request
7
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