Hi friends,
I am using this textbox:
@{IDictionary<string, object> htmlAttr = new Dictionary<string, object>();
htmlAttr.Add("rows", "5");
}
<ejs-textbox multiline="true" id="Notes" placeholder="@Html.DisplayNameFor(m => m.Notes)" floatLabelType="Auto" ejs-for="Notes" htmlAttributes="htmlAttr"></ejs-textbox>but it doesn't render on browser (Edge, Chrome, etc.) as textarea, instead of shows an input tag:
<input id="Notes" rows="5" data-val="true" data-val-maxlength="The field must be a string or array type with a maximum length of '250'." data-val-maxlength-max="250" name="Notes" ejs-for="true" class="e-control e-textbox e-lib" type="text" aria-labelledby="label_Notes">
Any idea?
Thanks
Package: Syncfusion.EJ2AspNet.Core 18.4.0.47