How can i format date(dd/mm/yyy) printed on the left corner when print the datatable..?
How can i format date(dd/mm/yyy) printed on the left corner when print the datatable..?
ab_ninja
Posts: 3Questions: 2Answers: 0
On the print the date is in format of mm/dd/yyyy. I want to change it to dd/mm/yyy
Please suggest
thanks in advance
following is my code.
$(document).ready(function () {
$('#Table_Result').DataTable({
"bLengthChange": true,
"lengthMenu": [[10, 25, 50, 100, 200, -1], [10, 25, 50, 100, 200, "All"]],
dom: 'lBfrtip', //l for length options.
"searching": false, //disable search option.
buttons: [
'copy', 'csv', 'excel',
{
extend: 'print',
exportOptions: {
columns: ':visible'
}
},
'colvis'
]
});
});
This discussion has been closed.