lundi 2 avril 2018

Modify sorting in kendo Grid

I have a column named 'IdleTime' which has values such as '59d 173', '23d 267' ,etc which represents n days and t time. But i wanted to sort this column by UpdatedTime as while sorting it considers IdleTime to be string and so the values aren't sorted properly.

@(Html.Kendo().Grid(Model).Name("StudentModel")
    .Columns(column =>
    {
      column.Bound(p => p.ID).Width(30).EditorTemplateName("#=GetID(this)#");
      column.Bound(p => p.IdleTime).Width(30);
      column.Bound(p => p.UpdatedTime).Width(50);
    })
    .Selectable()
    .Sortable())




Aucun commentaire:

Enregistrer un commentaire