Gridazor is a C# library that provides HTML helpers for Razor views/pages in ASP.NET Core applications. It simplifies the process of generating and managing data tables in your web applications by using the powerful Ag-Grid library for the front end. With Gridazor, you can easily bind lists to tables and submit data without needing AJAX.
- Easy Table Generation: Automatically generate tables from your models.
- Data Binding: Bind lists to tables with minimal setup.
- Non-AJAX Submission: Submit table data without the need for AJAX.
- Ag-Grid Integration: Utilize the robust features of Ag-Grid for front-end table management.
- Customizable: Customize column definitions, cell editors, and more.
You can install Gridazor via NuGet Package Manager:
Install-Package Gridazor
Or via the .NET CLI:
dotnet add package Gridazor
public class IndexVM
{
public List<Product> Products { get; set; } = [];
}
public class Product
{
[Editable(false)]
[Hide]
[Required(false)] // auto generated
public Guid Id { get; set; } = Guid.NewGuid();
[RowSelection]
[Required(true)]
public string Name { get; set; } = string.Empty;
[CellEditor("agLargeTextCellEditor")]
public string? Description { get; set; }
}
- Import ag-grid library:
<script src="https://cdn.jsdelivr.net/npm/ag-grid-community/dist/ag-grid-community.min.js"></script>
And Gridazor client-side:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gridazor@latest/dist/gridazor.css" />
<script src="https://cdn.jsdelivr.net/npm/gridazor@latest/dist/gridazor.js"></script>
@model IndexVM
@using Gridazor;
<div class="card card-primary">
@using (Html.BeginForm("Index", "Home", FormMethod.Post, new
{
enctype = "multipart/form-data"
}))
{
<div class="card-header">
<button id="add-button" type="button" class="btn btn-primary">Add</button>
<button id="delete-button" type="button" class="btn btn-danger">Delete</button>
</div>
<div class="card-body">
@Html.GridEditorFor(x => x.Products, "myGrid", "ag-theme-quartz")
</div>
<div class="card-footer">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
}
</div>
@section Scripts{
<script>
const gridElement = document.querySelector('#myGrid');
const gridazor = new Gridazor(gridElement, {
propertyName: '@nameof(Model.Products)',
enableDelete: true,
deleteButtonId: "delete-button",
addByButton: true,
addButtonId: "add-button"
});
</script>
}
Gridazor allows for extensive customization, including:
- Column Definitions: Override default column definitions.
- Cell Editors: Use custom cell editors or pre-built Ag-Grid editors.
- RTL Support: Enable or disable right-to-left text direction.
- Row Deletion: Enable row deletion with a custom delete button.
Contributions are welcome! especially front-end developers, to improve the custom editors styles :)
- Support Custom button for inserting the row. ✅
- Improve the style of the custom inputs.
- Improve the rendering of the html elements.
- Fix the override columns functionality. ✅
- Remove Jquery dependency. ✅
- Add integration tests for the js functionality.
- Extend Gridazor options with AgGrid options.✅
- Introduce more events.✅
- Show validation error when the cell is required.✅
- Support search using Ajax with GridazorDropdown.
- Support Localization.✅
- Support multiple files input.
- Support multi select in GridazorDropdown.
- Support async Search in GridazorDropdown.