This question is locked. New answers and comments are not allowed.
I have a MVC Grid which is bound to Employee collection. There are two calculated fields(Calc1,Calc2) that need to be calculated based on the input of the age. @(Html.Telerik().Grid(Model.Employee).Name("Grid").DataKeys(keys => keys.Add(p => p.EmployeeID).RouteKey("EmployeeID")).Columns(columns =>{columns.Bound(x => x.FirstName).Width(120).ReadOnly();columns.Bound(x => x.LastName).Width(120).ReadOnly();columns.Bound(x => x.Age);columns.Bound(x => x.Calc1).ReadOnly();columns.Bound(x => x.Calc2);}).Localizable("fr-FR").ClientEvents(events => events.OnEdit("onRowEdit").OnRowDataBound("OnRowDataBound"))) function onRowEdit(e) {$("#Age").bind('blur', function () { $("#Grid .t-grid-edit-row")[0].cells[3].innerHTML = "some value"; //Working file $("#Calc2").get(0).value = "some value";// Working fine if UIHint attribute is not specified on the Calc2 field });}Because, Calc2 cell is input type during editing type, I could update the textbox with the following syntax.$("#Calc2").get(0).value = some value;// Working fileBut the input type textbox not updating(value not reflecting) if I set [UIHint("Number")] attribute on Calc2 field.[UIHint("Number")]public decimal Calc2 {get; set;}public class Employee{ public string FirstName{get;set;} public string LastName{get;set;} public string Age{get;set;} [UIHint("Number")] public decimal Calc1{get;set;} [UIHint("Number")] public decimal Calc2{get;set;}}Please suggest me how to achieve this with UIHint attribute.