Change color to child row
Change color to child row
robyone
Posts: 16Questions: 3Answers: 0
Hi,
i use a responsive table and I would like to change programmatically (through api call) the background color of a child row (hidden until the user presses the button "+" on the parent row)
How can i do?
Thanks
This discussion has been closed.
Answers
Solved by entering the code:
row.child (). css ('background-color', $ (row.node ()). css ('background-color'));
at the right point in the file "dataTables.responsive.js"
Thanks anyway...