This repository is a Server Side processor for Jquery DataTables with Asp.Net Core as backend. It provides a quick way to implement dynamic multiple column searching and sorting along with pagination and excel export at the server side. This can be done by decorating your model properties with simple attributes.
Demo Implementation Project URL - Free Download
Note: This tutorial contains example for both AJAX GET and AJAX POST Server Side Configuration.
Warning: If we are RESTful strict, we should use GET Method to get information not POST but I prefer this way to avoid limitations related to form data through the query string, so up to you if you want to use GET. I recommend using AJAX GET only if your DataTable has very less number of columns. As Jquery DataTables AJAX requests produces too large query string which will be rejected by server.
Well... there are lots of different approaches how to get a Jquery DataTables with Asp.Net Core app running. I thought it would be nice for .NET devs to use the ASP.NET Core backend and just decorate the model properties with a pretty simple attributes called [Searchable]
and [Sortable]
. [DisplayName(“”)]
as the name suggests, can be used to change the column name in excel export or display name in the table HTML. I just combine ASP.NET Core & Jquery DataTables for easy server side processing.
If you liked JqueryDataTablesServerSide
project or if it helped you, please give a star ⭐️ for this repository. That will not only help strengthen our .NET community but also improve development skills for .NET developers in around the world. Thank you very much 👍
[Searchable]
[SearchableString]
[SearchableDateTime]
[SearchableShort]
[SearchableInt]
[SearchableLong]
[SearchableDecimal]
[SearchableDouble]
[SearchableEnum(typeof(TEnum))]
[NestedSearchable]
[Sortable]
[Sortable(Default = true)]
[NestedSortable]
All the above attributes have the following options,
Mode | Option | Type | Example | Description |
---|---|---|---|---|
Search | EntityProperty | string |
[Searchable*(EntityProperty = "EntityPropertyName")] |
To map your view model property with entity property if they have a different name |
Nested Search | ParentEntityProperty | string |
[NestedSearchable(ParentEntityProperty = "ParentEntityPropertyName")] |
To map your view model property with entity property if they have a different name |
Sort | EntityProperty | string |
[Sortable(EntityProperty = "EntityPropertyName")] |
To map your view model property with entity property if they have a different name |
Sort | Default | bool |
[Sortable(Default = true)] |
To indicate your database to do default sort by this property if no sort is specified from client |
Nested Sort | ParentEntityProperty | string |
[NestedSortable(EntityProperty = "EntityPropertyName")] |
To map your view model property with entity property if they have a different name |
Column names in HTML Table can be configured using the below attributes
[Display(Name = "")]
[DisplayName(“”)]
To customize the HTML Column display in <jquery-datatables>
Tag Helper, use the following attribute
[JqueryDataTableColumn]
And here are the options,
Option | Type | Example | Description |
---|---|---|---|
Exclude | bool |
[JqueryDataTableColumn(Exclude = true)] |
To exclude the property of your model from being added in HTML |
Order | int |
[JqueryDataTableColumn(Order = N)] |
To control the order of columns in HTML |
Please note: From v.3.2.0 all the simple properties in your models must have [JqueryDataTableColumn]
attribute for the <jquery-datatables>
Tag Helper to work.
The following chart describes the operator compatibility with data types with green as compatible and red as not compatible.
Operator | Description | string |
DateTime |
short |
int |
long |
decimal |
double |
enum |
---|---|---|---|---|---|---|---|---|---|
co |
Contains | ✔️ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ✔️ |
eq |
Equals | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |
gt |
GreaterThan | ❌ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ |
gte |
GreaterThanEqual | ❌ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ |
lt |
LesserThan | ❌ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ |
lte |
LesserThanEqual | ❌ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ |
To activate and make Jquery DataTable communicate with asp.net core backend,
PM> Install-Package JqueryDataTables.ServerSide.AspNetCoreWeb
> dotnet add package JqueryDataTables.ServerSide.AspNetCoreWeb
Json.NET has been removed from the ASP.NET Core shared framework.
The default for ASP.NET Core is now System.Text.Json
, which is new in .NET Core 3.0. Consider using System.Text.Json
when possible. It's high-performance and doesn't require an additional library dependency. I prefer to use Miscrosoft's new System.Text.Json
.
With System.Text.Json, setup your ConfigureServices
as follows:
public void ConfigureServices(IServiceCollection services)
{
services.AddControllersWithViews()
.AddJsonOptions(options =>
{
options.JsonSerializerOptions.Converters.Add(new JsonStringEnumConverter());
options.JsonSerializerOptions.PropertyNamingPolicy = null;
});
services.AddSession();
services.AddAutoMapper(typeof(Startup));
}
If your using Json.Net, then add a package reference to Microsoft.AspNetCore.Mvc.NewtonsoftJson
and then setup your ConfigureServices
as follows:
public void ConfigureServices(IServiceCollection services)
{
services.AddControllersWithViews()
.AddNewtonsoftJson(options => options.SerializerSettings.ContractResolver = new DefaultContractResolver());
services.AddSession();
services.AddAutoMapper(typeof(Startup));
}
If you're using Asp.Net Core 2.x, then setup your ConfigureServices
as follows,
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc()
.AddJsonOptions(options => options.SerializerSettings.ContractResolver = new DefaultContractResolver())
services.AddSession();
services.AddAutoMapper(typeof(Startup));
}
Please note: services.AddSession()
is is required only if you're using excel export functionality in Jquery DataTables.
Add a JqueryDataTables TagHelper reference to your _ViewImports.cshtml
file as shown below
@addTagHelper *, JqueryDataTables.ServerSide.AspNetCoreWeb
I have written
<jquery-datatables>
TagHelper to do the heavy lifting works for you.
<jquery-datatables id="fingers10"
class="table table-sm table-dark table-bordered table-hover"
model="@Model"
thead-class="text-center"
enable-searching="true"
search-row-th-class="p-0"
search-input-class="form-control form-control-sm"
search-input-style="width: 100%"
search-input-placeholder-prefix="Search">
</jquery-datatables>
Please note: If you prefer HTML Localization then, <jquery-datatables-html-localized>
Tag Helper is available with all the above properties.
Option | Description |
---|---|
id |
to add id to the html table |
class |
to apply the given css class to the html table |
model |
view model with properties to generate columns for html table |
thead-class |
to apply the given css class to the <thead> in html table |
enable-searching |
true to add search inputs to the <thead> and false to remove search inputs from the <thead> |
search-row-th-class |
to apply the given css class to the search inputs row of the <thead> in the html table |
search-input-class |
to apply the given css class to the search input controls added in each column inside <thead> |
search-input-style |
to apply the given css styles to the search input controls added in each column inside <thead> |
search-input-placeholder-prefix |
to apply your placeholder text as prefix in search input controls in each column inside <thead> |
use-property-type-as-input-type |
to generate HTML5 type input controls based on property type |
Add the following code to initialize DataTable. Don't miss to add
orderCellsTop : true
. This makes sure to add sorting functionality to the first row in the table header. For other properties refer Jquery DataTables official documentation.
Use
AdditionalValues
to pass extra parameters if required to the server for processing. Configure Column properties and add the required search operator in thename
property to perform search based on the operator in thename
property. If name property isnull
orstring.Empty
, the search default's toEquals
search operation.
Please note: Search Operator must be one among the following eq | co | gt | gte | lt | lte
based on the above compatibility chart.
var table = $('#fingers10').DataTable({
language: {
processing: "Loading Data...",
zeroRecords: "No matching records found"
},
processing: true,
serverSide: true,
orderCellsTop: true,
autoWidth: true,
deferRender: true,
lengthMenu: [[5, 10, 15, 20, -1], [5, 10, 15, 20, "All"]],
dom: '<"row"<"col-sm-12 col-md-6"B><"col-sm-12 col-md-6 text-right"l>><"row"<"col-sm-12"tr>><"row"<"col-sm-12 col-md-5"i><"col-sm-12 col-md-7"p>>',
buttons: [
{
text: 'Export to Excel',
className: 'btn btn-sm btn-dark',
action: function (e, dt, node, config) {
window.location.href = "/Home/GetExcel";
},
init: function (api, node, config) {
$(node).removeClass('dt-button');
}
}
],
ajax: {
type: "POST",
url: '/Home/LoadTable/',
contentType: "application/json; charset=utf-8",
async: true,
headers: {
"XSRF-TOKEN": document.querySelector('[name="__RequestVerificationToken"]').value
},
data: function (data) {
let additionalValues = [];
additionalValues[0] = "Additional Parameters 1";
additionalValues[1] = "Additional Parameters 2";
data.AdditionalValues = additionalValues;
return JSON.stringify(data);
}
},
columns: [
{
data: "Id",
name: "eq",
visible: false,
searchable: false
},
{
data: "Name",
name: "eq"
},
{
data: "Position",
name: "co"
},
{
data: "Offices",
name: "eq"
},
{
data: "DemoNestedLevelOne.Experience",
name: "eq"
},
{
data: "DemoNestedLevelOne.Extension",
name: "eq"
},
{
data: "DemoNestedLevelOne.DemoNestedLevelTwos.StartDates",
render: function (data, type, row) {
if (data)
return window.moment(data).format("DD/MM/YYYY");
else
return null;
},
name: "gt"
},
{
data: "DemoNestedLevelOne.DemoNestedLevelTwos.Salary",
name: "lte"
}
]
});
For AJAX GET configuration, simply change the ajax
and buttons
options as follows,
buttons: [
{
text: 'Export to Excel',
className: 'btn btn-sm btn-dark',
action: function (e, dt, node, config) {
var data = table.ajax.params();
var x = JSON.stringify(data, null, 4);
window.location.href = "/Home/GetExcel?" + $.param(data);
},
init: function (api, node, config) {
$(node).removeClass('dt-button');
}
}
],
ajax: {
url: '/Home/LoadTable/',
data: function (data) {
return $.extend({}, data, {
"additionalValues[0]": "Additional Parameters 1",
"additionalValues[1]": "Additional Parameters 2"
});
}
}
Add the following script to trigger search only onpress of Enter Key.
table.columns().every(function (index) {
$('#fingers10 thead tr:last th:eq(' + index + ') input')
.on('keyup',
function (e) {
if (e.keyCode === 13) {
table.column($(this).parent().index() + ':visible').search(this.value).draw();
}
});
});
Add the following script to trigger search onpress of Tab Key
$('#fingers10 thead tr:last th:eq(' + index + ') input')
.on('blur',
function () {
table.column($(this).parent().index() + ':visible').search(this.value).draw();
});
Decorate the properties based on their data types. For Nested Complex Properties, decorate them with
[NestedSearchable]
/[NestedSortable]
/[NestedIncludeInReport]
attributes upto any level.
public class Demo
{
[JqueryDataTableColumn(Order = 1)]
public int Id { get; set; }
[IncludeInReport(Order = 1)]
[JqueryDataTableColumn(Order = 2)]
[SearchableString(EntityProperty = "FirstName,LastName")]
[Sortable(EntityProperty = "FirstName,LastName", Default = true)]
public string Name { get => $"{FirstName} {LastName}"; }
[JqueryDataTableColumn(Exclude = true)]
public string FirstName { get; set; }
[JqueryDataTableColumn(Exclude = true)]
public string LastName { get; set; }
[IncludeInReport(Order = 2)]
[JqueryDataTableColumn(Order = 3)]
[SearchableEnum(typeof(Position))]
[Sortable]
public string Position { get; set; }
[Display(Name = "Office")]
[IncludeInReport(Order = 3)]
[JqueryDataTableColumn(Order = 4)]
[SearchableString(EntityProperty = "Office")]
[Sortable(EntityProperty = "Office")]
public string Offices { get; set; }
[NestedIncludeInReport]
[NestedSearchable]
[NestedSortable]
public DemoNestedLevelOne DemoNestedLevelOne { get; set; }
}
public class DemoNestedLevelOne
{
[IncludeInReport(Order = 4)]
[JqueryDataTableColumn(Order = 5)]
[SearchableShort]
[Sortable]
public short? Experience { get; set; }
[DisplayName("Extn")]
[IncludeInReport(Order = 5)]
[JqueryDataTableColumn(Order = 6)]
[SearchableInt(EntityProperty = "Extn")]
[Sortable(EntityProperty = "Extn")]
public int? Extension { get; set; }
[NestedIncludeInReport]
[NestedSearchable(ParentEntityProperty = "DemoNestedLevelTwo")]
[NestedSortable(ParentEntityProperty = "DemoNestedLevelTwo")]
public DemoNestedLevelTwo DemoNestedLevelTwos { get; set; }
}
public class DemoNestedLevelTwo
{
[DisplayName("Start Date")]
[IncludeInReport(Order = 6)]
[JqueryDataTableColumn(Order = 7)]
[SearchableDateTime(EntityProperty = "StartDate")]
[Sortable(EntityProperty = "StartDate")]
public DateTime? StartDates { get; set; }
[IncludeInReport(Order = 7)]
[JqueryDataTableColumn(Order = 8)]
[SearchableLong]
[Sortable]
public long? Salary { get; set; }
}
Please note:
- If view model properties have different name than entity model, then you can still do mapping using
(EntityProperty = 'YourEntityPropertyName')
. If they are same then you can ignore this. - If view model property is a combination of some other properties like
Name
property in the above root model, then you can specify them in(EntityProperty = 'YourEntityPropertyName,YourSomeOtherEntityPropertyName')
. This will make an implicitOR
search in database and sort byYourEntityPropertyName
and then byYourSomeOtherEntityPropertyName
in database. For Example, take theName
property in root model. It has[SearchableString(EntityProperty = "FirstName,LastName")]
. This will generate a implicitOR
query likeentity.Where(x => x.FirstName.ToLower().Contains("Name") || x.LastName.ToLower().Contains("Name"))
. Similarly,[Sortable(EntityProperty = "FirstName,LastName", Default = true)]
will generate query likeentity.OrderBy(x => x.FirstName).ThenBy(x => x.LastName)
for ascending order andentity.OrderByDescending(x => x.FirstName).ThenByDescending(x => x.LastName)
for descending order.
On DataTable's AJAX Request,
JqueryDataTablesParameters
will read the DataTable's state andJqueryDataTablesResult<T>
will acceptIEnumerable<T>
response data to be returned back to table asJsonResult
.
[HttpPost]
public async Task<IActionResult> LoadTable([FromBody]JqueryDataTablesParameters param)
{
try
{
// `param` is stored in session to be used for excel export. This is required only for AJAX POST.
// Below session storage line can be removed if you're not using excel export functionality.
// If you're using Json.Net, then uncomment below line else remove below line
// HttpContext.Session.SetString(nameof(JqueryDataTablesParameters), JsonConvert.SerializeObject(param));
// If you're using new System.Text.Json then use below line
HttpContext.Session.SetString(nameof(JqueryDataTablesParameters), JsonSerializer.Serialize(param));
var results = await _demoService.GetDataAsync(param);
return new JsonResult(new JqueryDataTablesResult<Demo> {
Draw = param.Draw,
Data = results.Items,
RecordsFiltered = results.TotalSize,
RecordsTotal = results.TotalSize
});
} catch(Exception e)
{
Console.Write(e.Message);
return new JsonResult(new { error = "Internal Server Error" });
}
}
public async Task<IActionResult> OnPostLoadTableAsync([FromBody]JqueryDataTablesParameters param)
{
try
{
// `param` is stored in session to be used for excel export. This is required only for AJAX POST.
// Below session storage line can be removed if you're not using excel export functionality.
// If you're using Json.Net, then uncomment below line else remove below line
// HttpContext.Session.SetString(nameof(JqueryDataTablesParameters), JsonConvert.SerializeObject(param));
// If you're using new System.Text.Json then use below line
HttpContext.Session.SetString(nameof(JqueryDataTablesParameters), JsonSerializer.Serialize(param));
var results = await _demoService.GetDataAsync(param);
return new JsonResult(new JqueryDataTablesResult<Demo> {
Draw = param.Draw,
Data = results.Items,
RecordsFiltered = results.TotalSize,
RecordsTotal = results.TotalSize
});
} catch(Exception e)
{
Console.Write(e.Message);
return new JsonResult(new { error = "Internal Server Error" });
}
}
public async Task<IActionResult> LoadTable([ModelBinder(typeof(JqueryDataTablesBinder))] JqueryDataTablesParameters param)
{
try
{
var results = await _demoService.GetDataAsync(param);
return new JsonResult(new JqueryDataTablesResult<Demo> {
Draw = param.Draw,
Data = results.Items,
RecordsFiltered = results.TotalSize,
RecordsTotal = results.TotalSize
});
} catch(Exception e)
{
Console.Write(e.Message);
return new JsonResult(new { error = "Internal Server Error" });
}
}
public async Task<IActionResult> OnGetLoadTableAsync([ModelBinder(typeof(JqueryDataTablesBinder))] JqueryDataTablesParameters param)
{
try
{
var results = await _demoService.GetDataAsync(param);
return new JsonResult(new JqueryDataTablesResult<Demo> {
Draw = param.Draw,
Data = results.Items,
RecordsFiltered = results.TotalSize,
RecordsTotal = results.TotalSize
});
} catch(Exception e)
{
Console.Write(e.Message);
return new JsonResult(new { error = "Internal Server Error" });
}
}
Inject Automapper
IConfigurationProvider
to make use ofProjectTo<T>
before returning the data. Inside the Data Access Method, createIQueryable<TEntity>
to hold the query. Now, to perform dynamic multiple column searching use Static Search ProcessorSearchOptionsProcessor<T,TEntity>
and call theApply()
function with query and table columns as parameters. Again for dynamic multiple column sorting, use Static Sort ProcessorSortOptionsProcessor<T,TEntity>
and call theApply()
function with query and table as parameters. To implement pagination, make use ofStart
andLength
from table parameter and return the result asJqueryDataTablesPagedResults
.
public class DefaultDemoService:IDemoService
{
private readonly Fingers10DbContext _context;
private readonly IConfigurationProvider _mappingConfiguration;
public DefaultDemoService(Fingers10DbContext context,IConfigurationProvider mappingConfiguration)
{
_context = context;
_mappingConfiguration = mappingConfiguration;
}
public async Task<JqueryDataTablesPagedResults<Demo>> GetDataAsync(JqueryDataTablesParameters table)
{
Demo[] items = null;
IQueryable<DemoEntity> query = _context.Demos
.AsNoTracking()
.Include(x => x.DemoNestedLevelOne)
.ThenInclude(y => y.DemoNestedLevelTwo);
query = SearchOptionsProcessor<Demo,DemoEntity>.Apply(query,table.Columns);
query = SortOptionsProcessor<Demo,DemoEntity>.Apply(query,table);
var size = await query.CountAsync();
if (table.Length > 0)
{
items = await query
.Skip((table.Start / table.Length) * table.Length)
.Take(table.Length)
.ProjectTo<Demo>(_mappingConfiguration)
.ToArrayAsync();
}
else
{
items = await query
.ProjectTo<Demo>(_mappingConfiguration)
.ToArrayAsync();
}
return new JqueryDataTablesPagedResults<Demo> {
Items = items,
TotalSize = size
};
}
}
Please note: If you are having DataAccessLogic in a separate project, the create instance of SearchOptionsProcessor
and SortOptionsProcessor
inside ActionMethod/Handler and pass it as a parameter to Data Access Logic.
Column names in Report can be configured using the below attributes
[Display(Name = "")]
[DisplayName(“”)]
To customize the Column display in Report, use the following attribute
[IncludeInReport]
And here are the options,
Option | Type | Example | Description |
---|---|---|---|
Order | int |
[IncludeInReport(Order = N)] |
To control the order of columns in Report |
Please note: From v.4.0.0 all the simple properties in your models must have [IncludeInReport]
attribute for the report export to work.
To exporting the filtered and sorted data as an excel file, add GetExcel
action method in your controller as shown below. Return the data as JqueryDataTablesExcelResult<T>
by passing filtered/ordered data, excel sheet name and excel file name. JqueryDataTablesExcelResult Action Result that I have added in the Nuget package. This will take care of converting your data as excel file and return it back to browser.
If you want all the results in excel export without pagination, then please write a separate service method to retrive data without using
Take()
andSkip()
public async Task<IActionResult> GetExcel()
{
// Here we will be getting the param that we have stored in the session in server side action method/page handler
// and deserialize it to get the required data.
var param = HttpContext.Session.GetString(nameof(JqueryDataTablesParameters));
// If you're using Json.Net, then uncomment below line else remove below line
// var results = await _demoService.GetDataAsync(JsonConvert.DeserializeObject<JqueryDataTablesParameters>(param));
// If you're using new System.Text.Json then use below line
var results = await _demoService.GetDataAsync(JsonSerializer.Deserialize<JqueryDataTablesParameters>(param));
return new JqueryDataTablesExcelResult<Demo>(results.Items,"Demo Sheet Name","Fingers10");
}
public async Task<IActionResult> OnGetExcelAsync()
{
// Here we will be getting the param that we have stored in the session in server side action method/page handler
// and deserialize it to get the required data.
var param = HttpContext.Session.GetString(nameof(JqueryDataTablesParameters));
// If you're using Json.Net, then uncomment below line else remove below line
// var results = await _demoService.GetDataAsync(JsonConvert.DeserializeObject<JqueryDataTablesParameters>(param));
// If you're using new System.Text.Json then use below line
var results = await _demoService.GetDataAsync(JsonSerializer.Deserialize<JqueryDataTablesParameters>(param));
return new JqueryDataTablesExcelResult<Demo>(results.Items,"Demo Sheet Name","Fingers10");
}
public async Task<IActionResult> GetExcel([ModelBinder(typeof(JqueryDataTablesBinder))] JqueryDataTablesParameters param)
{
var results = await _demoService.GetDataAsync(param);
return new JqueryDataTablesExcelResult<Demo>(results.Items,"Demo Sheet Name","Fingers10");
}
public async Task<IActionResult> OnGetExcelAsync([ModelBinder(typeof(JqueryDataTablesBinder))] JqueryDataTablesParameters param)
{
var results = await _demoService.GetDataAsync(param);
return new JqueryDataTablesExcelResult<Demo>(results.Items,"Demo Sheet Name","Fingers10");
}
To exporting the filtered and sorted data as an CSV file, add GetCSV
action method in your controller as shown below. Return the data as JqueryDataTablesCSVResult<T>
by passing filtered/ordered data, excel sheet name and excel file name. JqueryDataTablesCSVResult Action Result that I have added in the Nuget package. This will take care of converting your data as excel file and return it back to browser.
If you want all the results in excel export without pagination, then please write a separate service method to retrive data without using
Take()
andSkip()
public async Task<IActionResult> GetCSV()
{
// Here we will be getting the param that we have stored in the session in server side action method/page handler
// and deserialize it to get the required data.
var param = HttpContext.Session.GetString(nameof(JqueryDataTablesParameters));
// If you're using Json.Net, then uncomment below line else remove below line
// var results = await _demoService.GetDataAsync(JsonConvert.DeserializeObject<JqueryDataTablesParameters>(param));
// If you're using new System.Text.Json then use below line
var results = await _demoService.GetDataAsync(JsonSerializer.Deserialize<JqueryDataTablesParameters>(param));
return new JqueryDataTablesCSVResult<Demo>(results.Items,"Fingers10");
}
public async Task<IActionResult> OnGetCSVAsync()
{
// Here we will be getting the param that we have stored in the session in server side action method/page handler
// and deserialize it to get the required data.
var param = HttpContext.Session.GetString(nameof(JqueryDataTablesParameters));
// If you're using Json.Net, then uncomment below line else remove below line
// var results = await _demoService.GetDataAsync(JsonConvert.DeserializeObject<JqueryDataTablesParameters>(param));
// If you're using new System.Text.Json then use below line
var results = await _demoService.GetDataAsync(JsonSerializer.Deserialize<JqueryDataTablesParameters>(param));
return new JqueryDataTablesCSVResult<Demo>(results.Items,"Fingers10");
}
public async Task<IActionResult> GetCSV([ModelBinder(typeof(JqueryDataTablesBinder))] JqueryDataTablesParameters param)
{
var results = await _demoService.GetDataAsync(param);
return new JqueryDataTablesCSVResult<Demo>(results.Items,"Fingers10");
}
public async Task<IActionResult> OnGetCSVAsync([ModelBinder(typeof(JqueryDataTablesBinder))] JqueryDataTablesParameters param)
{
var results = await _demoService.GetDataAsync(param);
return new JqueryDataTablesCSVResult<Demo>(results.Items,"Fingers10");
}
Please note: GetReport
ActionMethod/Handler name must match the name you define in the excel export action click in your Jquery DataTable Initialization script. From v4.0.0
[IncludeInReport(Order = N)]
attribute needs to be present in your model to include the field in your excel report.
JqueryDataTablesServerSide is actively under development and I plan to have even more useful features implemented soon, including:
- Dynamic Select
- More Helpers
Get in touch if there are any features you feel JqueryDataTablesServerSide needs.
- .Net Standard 2.0
- Visual Studio Community 2019
- Fingers10.ExcelExport (3.0.0) - For Generating Excel/CSV Report
- Microsoft.AspNetCore.Razor (2.2.0) - For using TagHelper
- Microsoft.AspNetCore.Mvc.Localization - For HTML Localization in Tag Helper
- Newtonsoft.Json (12.0.3) - For Serialization/Deserialization
- System.Text.Json (4.7.1) - For Serialization/Deserialization
- Abdul Rahman - Software Developer - from India. Software Consultant, Architect, Freelance Lecturer/Developer and Web Geek.
Feel free to submit a pull request if you can add additional functionality or find any bugs (to see a list of active issues), visit the Issues section. Please make sure all commits are properly documented.
Many thanks to the below developers for helping with PR's and suggesting Features:
- @gaugo123 - gaugo123
- @cihangll - Cihan Güllü
- @JudeVajira - Jude Vajira Guanasekera
JqueryDataTablesServerSide is release under the MIT license. You are free to use, modify and distribute this software, as long as the copyright header is left intact.
Enjoy!
I'm happy to help you with my Nuget Package. Support this project by becoming a sponsor/backer. Your logo will show up here with a link to your website. Sponsor/Back via