-
Notifications
You must be signed in to change notification settings - Fork 486
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Child rows issue with server side #1657
Comments
Hello, Thanks |
I forgot it, the ajax callback must be: callback({ Not like the example |
Can you please give me the url of the original sample?? Thanks in advance
Il Ven 8 Lug 2022, 18:37 jose serramo ***@***.***> ha scritto:
… I forgot it, the ajax callback must be:
callback({
recordsTotal: resp.recordsTotal,
recordsFiltered: resp.recordsFiltered,
*data: resp.data*
});
Not like the example
callback({
recordsTotal: resp.recordsTotal,
recordsFiltered: resp.recordsFiltered,
*data: []*
});
—
Reply to this email directly, view it on GitHub
<#1657 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABDZBJWERQGVT6FQNHNAS4DVTBKLRANCNFSM5XFNX4HQ>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Server side: https://l-lin.github.io/angular-datatables/#/basic/server-side-angular-way Original DataTables detail: https://datatables.net/examples/server_side/row_details.html |
Hello. I'm trying to implement child rows, but when I use server side its not working because the child data is show bottom the table. If I use static data its work perfectly, only fails with server side. Any idea what could be the problem?
Child row with server side
Child row with static data
ServerSide code
The text was updated successfully, but these errors were encountered: