Lines 5-11
date.setTime(date.getTime() + 365 * 24 * 60 * 60 * 1000);
Link Here
|
5 |
|
5 |
|
6 |
function guess_nb_cols() { |
6 |
function guess_nb_cols() { |
7 |
// This is a bit ugly, we are trying to know if there are checkboxes in the first column of the table |
7 |
// This is a bit ugly, we are trying to know if there are checkboxes in the first column of the table |
8 |
if ($("#itemst tr:first th:first").html() == "") { |
8 |
if ($("#itemst tr:first th:first .dt-column-title").html() == "") { |
9 |
// First header is empty, it's a checkbox |
9 |
// First header is empty, it's a checkbox |
10 |
return 3; |
10 |
return 3; |
11 |
} else { |
11 |
} else { |
12 |
- |
|
|