Hi,
Would there be a way to interact with the Rating widget by setting a minimum and maximum value of 1, within a grid?
For example in this way:
columns.Bound(p => p.IsFavorite).Title("Is Favorite?").Width(140).Editable("returnFalse").ClientTemplate(Html.Kendo().Rating()
.Name("rating_#=ProductID#")
.Min(1)
.Max(1)
.Label(false)
.HtmlAttributes(new { data_bind = "value: IsFavorite" })
.Selection("single")
.ToClientTemplate().ToHtmlString()
);
I have tried but when I select the only star it no longer lets me deselect it
Any help would be greatly appreciated
Javier B.