Having trouble getting help?
Contact Support
Contact Support
Set the read-only TextBox
18 Dec 20241 minute to read
To make the TextBox read-only
, set the readonly
property to true
.
<div class="control-section">
<ejs-textbox id="readonly-textbox" placeholder="Enter Name" readonly="true"></ejs-textbox>
</div>
public ActionResult Index()
{
return View();
}