i'm using jQuery datatable as grid now i want to display master details (orders - order details) depending on master ID (ajax call to create the detail table) all i found https://datatables.net/examples/api/row_details.html which is static string is my request possible ?
thank you
You can do ajax request before render extended row info.
Create a function that accept row info and callback which will render extended row info.
Inside a function do ajax callback and on success call render callback with formatted data.
Code example base on example link code: