0
I have a jQuery Datatable that has detail, where click on the line expands the detail tamplate that makes a request to the server and brings different data from the main table, I followed this Example
But my prolema now is the following, I need that instead of the tamplate being a detail that expands as the line click, I need that it is always visible, a detail that is not hidden. My question is how to make the main datatable automatically load the detail since it does a part request.
At the end I will need to print out my main datatable, printing it and the detail.
Example:
Coluna1| Coluna2| Coluna3|
Valor1 Valor2 Valor3
Detalhe1| Detalhe2| Detalhe3|
ValorD1 ValorD2 ValorD3
you want it to load and already remain open, but do not want to lose this functionality, IE, the expand/hide button should continue working? Or you just want the details to appear and delete the expand/hide button?
– DNick
I just want the details to appear by deleting the expand/hide button as I need to make a print of this datatable afterwards.
– user11890