i'm using the fnReloadAjax function,
the return of the ajax call would be like this: {'aaData':[...], 'name':'Jacky'},
the 'aaData' part is working well, but i still need the 'name' part,
how could i get it out?
yeah,
i got it.
[code]
oTable.bind('xhr', function ( e, oSettings ) {
var res = oSettings.jqXHR.responseText;
eval("var resp="+res);
alert(resp.xxx);
} );
[/code]
Replies
i got it.
[code]
oTable.bind('xhr', function ( e, oSettings ) {
var res = oSettings.jqXHR.responseText;
eval("var resp="+res);
alert(resp.xxx);
} );
[/code]