Customizing the grid
Add custom columns to the index grid view:
protected override IEnumerable<CustomGridColumn<TEntity>> CustomColumns {
new CustomGridColumn<TEntity>
{
Name = "Discount",
ValueFunc = e => e.CalculateDiscount()
}
};
Explicitly specify shown columns:
protected override IEnumerable<string> ShownColumns {
new[] { "Name", "Price" }
};
Hidden Columns
Hide columns:
protected override IEnumerable<string> HiddenColumns {
new[] { "Description" }
};
Add custom actions for each grid row:
protected override IEnumerable<GridAction> CustomActions {
new GridAction {
Name = "Notify",
Action = "Notify"
}
};
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")
};