Force question about external source
Force question about external source
when I using the datatables in the tomcat with internal source :
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "../server_side/scripts/server_processing.php"
} );
} );
datatables working good but when i using external source:
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "http://IP address/server_side/scripts/server_processing.php"
} );
} );
datatables not showing any think in the table (showing Processing message)
can you help me about this actin
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "../server_side/scripts/server_processing.php"
} );
} );
datatables working good but when i using external source:
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "http://IP address/server_side/scripts/server_processing.php"
} );
} );
datatables not showing any think in the table (showing Processing message)
can you help me about this actin
This discussion has been closed.
Replies
You can use jsonp to work around this.
Allan