ant-design-blazor/components/input/AntTextArea.razor

13 lines
517 B
Plaintext

@namespace AntBlazor
@inherits AntInput
<!--TODO: minheight, maxheight, onResize-->
<textarea class="@ClassMapper.Class" style="@Style" @attributes="Attributes" id="@Id" placeholder="@placeholder" @bind="Value"
@ref="inputEl"
@oninput="OnInputAsync"
@onkeypress="OnPressEnterAsync" />
@if (AutoSize)
{
<textarea class="@ClassMapper.Class" style="position:absolute;z-index:-1; visibility: hidden;height: 0px;overflow-y:hidden; @_hiddenWidth" @ref="_hiddenEle">@Value</textarea>
}