I have an application where in the past I used HiddenFor and TextBoxFor for the same field where the TextBoxFor was disabled.
@Html.HiddenFor(m => m.String) @Html.Kendo().TextBoxFor(m => m.String).HtmlAttribute(new { @class = "k-state-disabled", disabled = "disabled" })
We are currently trying to upgrade our telerik to the latest version and found this issue.
What is the recommended way of fixing this.
The reason we need this is because the field is on a form and sometimes its disabled and the value needs to be submitted.