When you use ```datatables.min.css``` and ```datatables.min.js``` locally, instead of datatables CDN, you may have encountered that ```sort_desc.png```,```sort_asc.png``` and other images not found error. That's because there is no static images downloaded with ```js``` and ```css``` file. To fix the problem, you can download these images from Datables official github and place them at your static folder on your server. Link ```https://github.com/DataTables/DataTables/tree/master/media/images``` After put these images on the server, you may open your downloaded ```datatables.min.css``` file and update the following section: ## Original version: ```css .sorting{background-image:url("/DataTables-1.11.5/images/sort_both.png")} .sorting_asc{background-image:url("/DataTables-1.11.5/images/sort_asc.png")} .sorting_desc{background-image:url("/DataTables-1.11.5/images/sort_desc.png")} .sorting_asc_disabled{background-image:url("/DataTables-1.11.5/images/sort_asc_disabled.png")} ``` ## After update: ```css .sorting{background-image:url("/static/img/sort_both.png")} .sorting_asc{background-image:url("/static/img/sort_asc.png")} .sorting_desc{background-image:url("/static/img/sort_desc.png")} .sorting_asc_disabled{background-image:url("/static/img/sort_asc_disabled.png")} ```
Datatable static image not found on the server
Subscribe to:
Post Comments (Atom)
Datatable static image not found on the server
When you use ```datatables.min.css``` and ```datatables.min.js``` locally, instead of datatables CDN, you may have encountered that ```sort...
-
Step 1. Install Oracle XE 11g 1. Download Oracle XE (oracle-xe-11.2.0-1.0.x86_64.rpm.zip) from Oracle official website. You need an accoun...
-
I used the following method to hide the extra long column contents when loading the page. The contents will then display when mouse hover th...
-
When you use ```datatables.min.css``` and ```datatables.min.js``` locally, instead of datatables CDN, you may have encountered that ```sort...
No comments:
Post a Comment