This question is locked. New answers and comments are not allowed.
I have a model that contains a property of type List<string>. When I bind that property to the grid, all the grid displays is column called length, and then a row for for each item in the list, that is the length of the string.
I would like the grid to display the string and not the string length.
I would also like to add a two additional columns, a check box, and a button to control deleting either a group of items, or a single item.
Here is the code I'm using to do the binding:
I would like the grid to display the string and not the string length.
I would also like to add a two additional columns, a check box, and a button to control deleting either a group of items, or a single item.
Here is the code I'm using to do the binding:
<%Html.Telerik().Grid<string>().Name("grdRoles").BindTo(Model.Roles).Render();%>
Thanks