public void Sortable_sets_the_sortable_of_the_column()
        {
            builder.Sortable(false);

            Assert.False(column.Sortable);
        }
Ejemplo n.º 2
0
 public static GridBoundColumnBuilder <TModel> ColumnAction <TModel>(this GridBoundColumnBuilder <TModel> builder, string title = null)
     where TModel : class
 {
     return(builder.Sortable(false).Filterable(false).Title(title));
 }