We are using a NumericTextBox in a grid for percentage complete field. Users would like to see the % when the field is just in display mode. The Format property of the NumericTextBox isnt showing the percent sign when it is set to p0.
@(Html.Kendo().NumericTextBoxFor(m => m)
.Format("p0")
.SelectOnFocus(true)
.Decimals(0)
.Min(0)
.Max(100)
.Spinners(true)
.Events(e =>
{
e.Change("percentCompleteChange");
})
}