Seems so simple. Would like to find a quick solution but never can. I have a autocomplete set to read only... no problem.
@Html.Kendo().AutoCompleteFor(model => model.CID).Name("CID").HtmlAttributes(new { @readonly = "readonly" })
Now I want to make CurrencyTextBoxFor read only. PROBLEM. Why is every widget different on basic attributes? Here is the code:
@Html.Kendo().CurrencyTextBoxFor(model => model.BudgetSpent).Name("BudgetSpent").HtmlAttributes(new { @readonly = "readonly" })
It doesn't work. Can't find it in documentation and have to move on to the next Kendo problem for MVC
Please help or point me to where I can find a solution to basic features like this.
Thanks
@Html.Kendo().AutoCompleteFor(model => model.CID).Name("CID").HtmlAttributes(new { @readonly = "readonly" })
Now I want to make CurrencyTextBoxFor read only. PROBLEM. Why is every widget different on basic attributes? Here is the code:
@Html.Kendo().CurrencyTextBoxFor(model => model.BudgetSpent).Name("BudgetSpent").HtmlAttributes(new { @readonly = "readonly" })
It doesn't work. Can't find it in documentation and have to move on to the next Kendo problem for MVC
Please help or point me to where I can find a solution to basic features like this.
Thanks