Skip to content

Latest commit

 

History

History
63 lines (44 loc) · 1002 Bytes

grid.md

File metadata and controls

63 lines (44 loc) · 1002 Bytes

Customizing the grid

Custom Columns

Add custom columns to the index grid view:

protected override IEnumerable<CustomGridColumn<TEntity>> CustomColumns {
  new CustomGridColumn<TEntity>  
  {
    Name = "Discount",
    ValueFunc = e => e.CalculateDiscount() 
  }
};

Shown Columns

Explicitly specify shown columns:

protected override IEnumerable<string> ShownColumns {
  new[] { "Name", "Price" }
};

Hidden Columns

Hide columns:

protected override IEnumerable<string> HiddenColumns {
  new[] { "Description" }
};

Custom Row Actions

Add custom actions for each grid row:

protected override IEnumerable<GridAction> CustomActions {

  new GridAction { 
    Name = "Notify",
    Action = "Notify"
  }

};

Rows Per Page

Customize rows per page options:

protected override IEnumerable<Tuple<int, string>> PageSizes {
  
  new Tuple<int, string>(10, "10 per page"),
  new Tuple<int, string>(50, "50 per page")
  
};