Where to put breakpoint in Firebug to see returned JSON?
Where to put breakpoint in Firebug to see returned JSON?
MrBaseball34
Posts: 96Questions: 0Answers: 0
I need to know that my JSON data is coming back because the table is coming up empty.
If I run my server-side script independently, it returns the JSON data perfectly.
If I run my server-side script independently, it returns the JSON data perfectly.
This discussion has been closed.
Replies
[code]
oSettings.fnServerData.call( oSettings.oInstance, oSettings.sAjaxSource, [], function(json)
[/code]
[code]
$(document).ready(function() {
[/code]
I get this error:
[code]
oColumn is undefined
jquery.dataTables.js
Line 6779
[/code]
Why would that be happening?
Is there a way to set the options and then initialize the control after?