images for sorting and pages don't show up with server-side processing
images for sorting and pages don't show up with server-side processing
Hello Allan,
I have subdirectory Datatables in the root where are copied css,images and js subdirectories from the datatables zip.
The images for sorting and paging show up when I'm using examples from http://blueorbitsoftware.com/blog/?p=17 or http://britseyeview.com/software/dtgs/
These examples don't have server-side processing. When I use server-side processing as shown below I get the table, search, first, previous, next. Everything except the images. I don't understand what's difference for images is whether I'm using server-side processing or not as soon as I use the same below link and script tags
To use server-side processing(DataTableServer.aspx is in the same directory as the calling page):
$(document).ready(function() {
$('#myDataTable').dataTable({
"bJQueryUI": true,
"bPaginate": true,
"bLengthChange": true,
"bSort": true,
"bAutoWidth": false,
"iDisplayLength": 10,
"sPaginationType": "full_numbers",
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "DataTableServer.aspx"
});
});
Thanks.
I have subdirectory Datatables in the root where are copied css,images and js subdirectories from the datatables zip.
The images for sorting and paging show up when I'm using examples from http://blueorbitsoftware.com/blog/?p=17 or http://britseyeview.com/software/dtgs/
These examples don't have server-side processing. When I use server-side processing as shown below I get the table, search, first, previous, next. Everything except the images. I don't understand what's difference for images is whether I'm using server-side processing or not as soon as I use the same below link and script tags
To use server-side processing(DataTableServer.aspx is in the same directory as the calling page):
$(document).ready(function() {
$('#myDataTable').dataTable({
"bJQueryUI": true,
"bPaginate": true,
"bLengthChange": true,
"bSort": true,
"bAutoWidth": false,
"iDisplayLength": 10,
"sPaginationType": "full_numbers",
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "DataTableServer.aspx"
});
});
Thanks.
This discussion has been closed.