What is aoData
What is aoData
bluesapphire
Posts: 17Questions: 0Answers: 0
I have seen following example:
[code]
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "../examples_support/server_processing_post.php",
"fnServerData": function ( sSource, aoData, fnCallback ) {
$.ajax( {
"dataType": 'json',
"type": "POST",
"url": sSource,
"data": aoData,
"success": fnCallback
} );
}
} );
} );
[/code]
Can you guide me where and how can I get value of 'oaData'. Because when I run this example laocally, it doesn't show oaData variables in FIREBUG.
Thanks in advance
[code]
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "../examples_support/server_processing_post.php",
"fnServerData": function ( sSource, aoData, fnCallback ) {
$.ajax( {
"dataType": 'json',
"type": "POST",
"url": sSource,
"data": aoData,
"success": fnCallback
} );
}
} );
} );
[/code]
Can you guide me where and how can I get value of 'oaData'. Because when I run this example laocally, it doesn't show oaData variables in FIREBUG.
Thanks in advance
This discussion has been closed.
Replies
Allan