관리 메뉴

웹개발자의 기지개

[jquery] DataTable 꼭 써보자. 본문

jquery

[jquery] DataTable 꼭 써보자.

http://portfolio.wonpaper.net 2020. 8. 1. 07:35

jquery 라이브러리 중에  DataTable 이다. 깔끔하고 다양한 액션 기능들을 제공한다.

https://datatables.net/

 

DataTables | Table plug-in for jQuery

DataTables Table plug-in for jQuery Advanced tables, instantly DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, built upon the foundations of progressive enhancement, that adds all of these advanced features to any H

datatables.net

 

 

ajax 형태이므로 글쓰기, 글수정, 삭제 시에 다시 Reload 시켜야한다.

 

var oTable = $('#filtertable_data').DataTable( );
// to reload
oTable.ajax.reload();

var oTable = $('#filtertable_data').dataTable( );
// to reload
oTable.api().ajax.reload();
Comments