|
<EditForm Model="@Data">
<SfTextBox Multiline="true" @bind-Value="@Data.multiValue" CssClass="text-multiline" HtmlAttributes="@attr"></SfTextBox>
</EditForm>
@code {
public model Data = new model();
public class model
{
public string multiValue { get; set; }
}
public Dictionary<string, object> attr = new Dictionary<string, object>()
{
{ "rows", "20"}
};
} |
This was one of the first hits for searching Syncfusion and disable spell check so I just thought I'd add that you can disable spell checking on a specific element by wrapping it in a <div> with spell checking disabled i.e.
<div spellcheck="false>
<SfTextBox........ />
</div