This question is locked. New answers and comments are not allowed.
Hi
I have a little problem. I have a grid, with bit column, and i need to sorting this.
| Html.Telerik() |
| .Grid<GridDemoMvc.Models.Model>("customers") |
| .Name("grid1") |
| .... |
| .Columns(c => { |
| ... |
| c.Bound(o => o.bFree).Title("isTrue"); |
| .... |
| } |
| .Sortable() |
| .Render(); |
And it's works, fine, but how can i do, that show checkbox with pipe if value= true and show checkbox without pipe, if value=false, becouse now show it like list-box.
Thanks in advance,
Richard