Se puede obtener los datos de la pestaña que se esta viendo
Se puede obtener los datos de la pestaña que se esta viendo
This question has an accepted answers - jump to answer
This discussion has been closed.
This question has an accepted answers - jump to answer
Answers
With Datatables you can use
rows().data()
to get the table data.Chain
toArray()
, like thisrows().data().toArray()
, to get a Javascript array of the data.You can send the data using jQuery ajax() to the server.
Kevin
muchas gracias por tu pronta respuesta, pero conseguir todos los datos ya lo hago desde mi database, lo que quiere es saber que datos estan en la pestaña actualmente
What does the tab contain? If its a datatable then use
rows().data()
. If its something else then you may be asking on the wrong forum if you aren't using Datatables.Kevin