I couldn't find any information on the (very huge) documentation of datatables concerning the question of multiple ajax sources.
So I have a first source:
"ajax": {
"url": "components/table_accountingin.php?type=incomes",
"dataSrc": 'patients'
},
And I'd like to have a second url getting the data from another source. Is that possible ? The function generating the json data is quite complex so I'd like to avoid putting all calls in the same php function ! I tried to put sources between brackets etc. but that obviously didn't work out as expected !
Thank you in advance :)