sAjaxSource
sAjaxSource
koolkatwebdesigns
Posts: 6Questions: 0Answers: 0
I have a server based xml file that I would like to use as a data source. I can easily use php and return the correct json to datatables. The actual number of records I return is small - about 120 so I would like to be able to sort, filter and paginate on the client. I realize that this is not supported in datatables so I was wondering how to turn the server-side xml into a client-side json file that I could use?
Thanks.
Thanks.
This discussion has been closed.
Replies
Allan
[code]
<?php echo xmlToJson( $xml ); ?>
[/code]
Allan
Thanks.
Allan