023 - .Net Core: Server Side Pagination With DataTables

preview_player
Показать описание
Example of DataTables usage with server side pagination in ASP.NET CORE Web Application.

Summary:
The video contains three parts.
1) Creating sample data
2) Preparing controller and view to display objects in datatables.
3) Adding Server Side paging features to be used with datatables search, sort and paging.

Highlighted Topics:
-- Server Side Paging, Pagination
-- Sort, Search data in table using datatables.
-- Create sample objects in startup.
-- Static keyword usage.

Software:
OS: Windows 10
IDE: Visual Studio Community Edition
Browser: Firefox
.NET Core v2.2
dataTables: 1.10.19

Credits of the music:
Afternoon (Ambient Piano Solo) which is licensed under the Creative Commons 0 License.
Рекомендации по теме
Комментарии
Автор

Thank You so much U helped me a Lot 🙏🙏🙏

ermiendalamaw
Автор

The server side pagination tutorial starts here 17:05

DwikiIkhwan
Автор

Hi these are very nice videos. I'm learning a lot from them.
Please keep up the good job

GeminiLearning
Автор

Can we implement serverside pagination with a direct api call?

talhasiddiquixd
Автор

Can we download document what you shown in video please

krishramakrishna
Автор

Do more videos on .net core bro thanks

rajubabukankipati
Автор

Great job. It is helping me out.
Just one thing, I am getting error when I define my columns in the format you mentioned. It is giving me an error.

"columns": [
// For Student.Id
{ "data": "id", "name": "Id" },

//updating the column like below is showing me the table. Otherwise I am having errors.


"columns": [
// For Student.Id
{ "data": "Id" },
I don't even know what is the purpose of "id", "name"

Another thing is I dont think detail action method has anything to do rendering of the table. Are you sure Detail method loads the grid like you mentioend in your doc?

Aammiz
Автор

nobody on the internet is doing the edit and delete on pages other than the first page and without it, it is a junk.

aptechstudent