I have a list of online courses in a table, and the data is short except for class description. I followed the ideas in this post https://datatables.net//forums/discussion/comment/73046/#Comment_73046 to get my table to display the class description (which I output via PHP in a column of my table that is hidden via CSS) in a child row when I click on the title column (the first column) in the parent row. I was so happy to finally get it working!
But now when I shrink my web browser window, the responsive functionality I had before is no longer working. It hides the other columns I specified in my columnDefs, but I cannot expand the child row anymore to see the data. I think because I specified a custom format for the child row that only contains the class description, I have created some sort of conflict. When I try to expand the row details and then resize the browser window, I can see the hidden columns until I click on the event title, and then the child row data gets replaced with my class description. How can I make it so that my class description is displayed in addition to the other columns which are hidden for mobile devices?
Perhaps this makes sense as-is... but I am trying to get a JSFiddle going so you can see my problem in action. I will post that when I have it ready. Thanks!