HI,
I have a slider:
@(Html.Kendo().Slider<int>()
.Name("yearSlider")
.IncreaseButtonTitle("-")
.DecreaseButtonTitle("+")
.Min(2016)
.Max(2019)
.SmallStep(1)
.LargeStep(1)
.Value(2016)
.HtmlAttributes(new { @class = "yearSlider" }))
The year is displayed as "2,016". How do I make it show "2016" (no comma)?
thanks