In this video you will be able to display data from DATABASE using jquery datatable plugin . before starting anything, please download latest version of Jquery DataTable. Click here to download the latest version of Jquery Datatable. You can watch my previous tutorial to get step by step DataTable plugin installation guide. you can visit here: Integrate JQuery DataTable plugin into Asp.net MVC
The expected output will be as what displayed in following image.
# View Page (Index.cshtml)
Right click on your controller' s Index method and add a view. After adding view, replace content with below code.
<div class="col-md-9"> <table class="display" id="MyDataTable"> <thead> <tr> <th> EmaployeeName </th> <th> Department </th> <th> Address </th> <th> EmployeeId </th> </tr> </thead> <tbody></tbody> </table> </div> <script> $(document).ready(function () { // $("#MyDataTable").DataTable(); GetEmployeeRecord(); }) var GetEmployeeRecord = function () { $.ajax({ type: "Get", url: "/Test/GetEmployeeRecord", success: function (response) { BindDataTable(response); } }) } var BindDataTable = function (response) { $("#MyDataTable").DataTable({ "aaData": response, "aoColumns": [ { "mData": "Name" }, { "mData": "DepartmentName" }, { "mData": "Address" }, { "mData": "EmployeeId" }, ] }); } </script>
# ViewModel (EmployeeViewModel)
Create two table in database i.e. Employee and Department table. Insert few record into it. Then finally refresh your entity framework. Entity framework will automatically create Employee and Department class and if they are connected to each other then, You will see the virtual keyword referencing Department table in employee class.
Create a class named EmployeeViewModel and add same property into it as present in Employee class created by entity framework.
Create a class named EmployeeViewModel and add same property into it as present in Employee class created by entity framework.
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace MVCTutorial.Models { public class EmployeeViewModel { public int EmployeeId { get; set; } [Required(ErrorMessage = "Enter Name")] public string Name { get; set; } [Required(ErrorMessage = "Enter Department")] public Nullable<int> DepartmentId { get; set; } [Required(ErrorMessage = "Enter Address")] public string Address { get; set; } public Nullable<bool> IsDeleted { get; set; } //Custom attribute public string DepartmentName { get; set; } public bool Remember { get; set; } public string SiteName { get; set; } } }
# Controller Code (TestController.cs)
Create a controller and add below method into it.
public JsonResult GetEmployeeRecord() { MVCTutorialEntities db = new MVCTutorialEntities(); List<EmployeeViewModel> List = db.Employees.Select(x => new EmployeeViewModel { Name = x.Name, EmployeeId = x.EmployeeId, DepartmentId = x.DepartmentId, DepartmentName = x.Department.DepartmentName, Address=x.Address, IsDeleted = x.IsDeleted }).ToList(); return Json(List, JsonRequestBehavior.AllowGet); }
All Code Factory
- Part 11- Insert data into database
- Part 12- Server side and clientside validation
- Part 13- Insert data into multiple tables
- Part 14- Insert data into database using JQuery
- Part 15- How to create Bootstrap Popup
- Part 16- Delete operation in Asp.net MVC
- Part 17- What is Partial View in Asp.net MVC
- Part 18- How to call Partial View using JQuery
- Part 19- Difference between Html.Partial() and Html.RenderPartial()
- Part 20- AddEdit Record using Partial View
- Part 21- Layout View in Asp.net MVC
- Part 22- Style.Render and Script.Render
- Part 23 - RenderBody, RenderSection and RenderPage.
- Part 24- Divide Page into several component using Bootstrap
- Part 25- Refresh Entity framework after any modification in database table
- Part 26- Set foreign key relationnship in database tables
- Part 27- Create Rgistration Page
- Part 28- Create Login Page
- Part 29- Client Side Validation using JQuery
- Part 30- How to return multiple Model to a View (Interview)
- Part 31- How to create Dynamic Menu using Partial View
- Part 32- Preview Image Before Uploading
- Part 33- Upload and Display Image using JQuery
- Part 34-Upload Image to SQL Server and Display
- Part 35- Download Image from URL and Upload to SQL Server
- Part 36- Cascading DropdownList
- Part 37- Implement Search Functionality
- Part 38- Attribute Routing in MVC
- Part 39- How to display multiple checkbox checked data
- Part 40- How to send multiple checkbox checked value to Server
- Part 41- How to create responsive sortable Image Gallery
- Part 42 - How to implement JQuery Autocomplete Textbox
- Part 43 - How to send Emails in Asp.net MVC
- Part 44 - Integrate JQuery DataTables plugin
- Part 45 - Display record from database using JQuery Datatable
- Part 46- Add Edit Record using JQuery DataTable
- Part 47 - JQuery DataTables Server -side Processing
- Part 48 - JQuery server side processing -Search functionality
- Part 49 - Pagination using Skip and Take method
- Part 50 - Refresh DataTable After Performing Any Action
- Part 51 - Send OTP ( One Time Password ) to any mobile device
- Part 52 - How to use AutoMapper in Asp.net MVC
- Part 53 - How to use AutoMapper ForMember Method
- Part 54 - Repository Pattern - 1 - Adding Business Layer
- Part 55 - Repository Pattern - 2 - Adding Domain Layer
- Part 56 - Repository Pattern - 3 - Dependency Injection
- Part 57- Repository Pattern- 4 - Adding Data Access Layer
- Part 58 - Repository Pattern - 5 - Setting Up Generic Repository
- Part 59 - Display Record using repository pattern
- Part 60 - Add Edit Record using Repository Pattern
2 comments:
Sir,
Error getting.. DataTable is not a function.
Tried all JS.. Normal JS n DataTable JS...with correct sequence.
Not working.. N may will not work further operations you have given related to DataTable.
Hi Ashish,
I like the videos on datatables, thank you! Can you point me to some real-world examples where there is a textbox or a ddl to send a parameter to load the datatable, before the search. I want to have a datatable that loads from a large sql table of data, thousands of rows. So I want the user to request probably from textbox or a ddl to get a datatable of ONLY rows in a certain city, for example. Is it better to post the textbox/ddl choice to another view, or an ajax post to a partial view on the same page?
Thank you!
Post a Comment