Gridazor 1.0.4
dotnet add package Gridazor --version 1.0.4
NuGet\Install-Package Gridazor -Version 1.0.4
<PackageReference Include="Gridazor" Version="1.0.4" />
paket add Gridazor --version 1.0.4
#r "nuget: Gridazor, 1.0.4"
// Install Gridazor as a Cake Addin #addin nuget:?package=Gridazor&version=1.0.4 // Install Gridazor as a Cake Tool #tool nuget:?package=Gridazor&version=1.0.4
Gridazor
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.
Features
- 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.
Installation
You can install Gridazor via NuGet Package Manager:
Install-Package Gridazor
Or via the .NET CLI:
dotnet add package Gridazor
Usage
Example Model
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; }
[HeaderName("Category")]
public int CatId { get; set; }
[Required(true)]
[HeaderName("Image")]
public FileInput? Image { get; set; }
}
public class FileInput : IFileInput
{
public IFormFile? File { get; set; }
public string? Name { get; set; }
public string? Path { get; set; }
}
Example Razor View
Download the required js/css files from here:
Gridazor.zipImport them in Layout.cshtml:
<link rel="stylesheet" href="~/lib/Gridazor/GridazorDropdown/GridazorDropdown.css" />
<link rel="stylesheet" href="~/lib/Gridazor/GridazorFileInput/GridazorFileInput.css" />
<script src="https://cdn.jsdelivr.net/npm/ag-grid-community/dist/ag-grid-community.min.js"></script>
<script src="~/lib/Gridazor/GridazorDropdown/GridazorDropdown.js"></script>
<script src="~/lib/Gridazor/GridazorFileInput/GridazorFileInput.js"></script>
<script src="~/lib/Gridazor/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="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>
Example Script Section
@section Scripts{
<script>
const dropdownValues = @Html.Raw(Json.Serialize(ViewBag.Cats));
$("#myGrid").gridazor({
propertyName: '@nameof(Model.Products)',
overrideColumnDefs: [
{
field: "catId",
cellEditor: GridazorDropdown,
cellEditorParams: {
values: dropdownValues.map(item => ({
value: item.id,
text: item.name
}))
},
valueFormatter: (params) => gridazorDropdownHelper.valueFormatter(params)
},
{
field: "image",
cellEditor: GridazorFileInput,
cellRenderer: (params) => gridazorFileInputHelper.cellRender(params)
}
],
enableDelete: true,
deleteButtonId: "delete-button"
});
</script>
}
Customization
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.
Contributing
Contributions are welcome! especially front-end developers, to improve the custom editors styles 😃
Todo
- 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. ✅
- Include the css/js files inside the Nuget package.
- 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 Backend Validation.
- Support search using Ajax with GridazorDropdown.
- Support Localization.✅
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.2.0)
-
net7.0
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.2.0)
-
net8.0
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
1.0.4 | 213 | 10/31/2024 | |
1.0.3 | 619 | 9/28/2024 | |
1.0.2 | 95 | 9/27/2024 | |
1.0.1 | 126 | 9/22/2024 | |
1.0.0-alpha | 90 | 9/11/2024 |