I'm using the following text box which having a value inside of it but it is disabled. the problem is that this textbox have value inside which I want to allow that the user can copy the value from it,the problem is currently that I cannot put the curser on it... any idea how to solve it?i've tried also with read only and having same issue...
<td class="display-field">
<b>@Html.TextBoxFor(model => model.EString, new { @style = "width: 100px;", placeholder = "Click", @disabled = true })</b>
</td>