Add print button to responsive modal window & hide blanks.
Add print button to responsive modal window & hide blanks.
classic12
Posts: 228Questions: 60Answers: 4
in Responsive
Some final tweeks.
http://toolfolks.com/surplusAnywhere5/
I need to
1 Add a print and a custom button onto the modal window.
2. remove from the window blank entries.
responsive: {
details: {
renderer: $.fn.dataTable.Responsive.renderer.tableAll(),
display: $.fn.dataTable.Responsive.display.modal( {
header: function ( row ) {
var data = row.data();
return 'Details for Quote ID '+data.quoteID;
}
} )
}
}
Cheers
Steve Warby
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
1) There isn't a built in option for that - you'd need to create your own display controller or modify the default.
2) Do you mean you don't want any entries which have no information in them? For that you would need your own custom renderer as the default doesn't have an option for that.
Allan