Lines 1878-1883
Link Here
|
1878 |
responsive: { |
1878 |
responsive: { |
1879 |
details: { type: "column", target: -1 }, |
1879 |
details: { type: "column", target: -1 }, |
1880 |
}, |
1880 |
}, |
|
|
1881 |
createdRow: function(row, data, dataIndex) { |
1882 |
const expandCell = $('td.dtr-control', row).last(); |
1883 |
expandCell.attr('title', 'Expand or collapse row details'); |
1884 |
expandCell.attr('aria-label', 'Expand or collapse row details'); |
1885 |
} |
1881 |
}, |
1886 |
}, |
1882 |
table_settings |
1887 |
table_settings |
1883 |
); |
1888 |
); |
Lines 1891-1896
Link Here
|
1891 |
responsive: { |
1896 |
responsive: { |
1892 |
details: { type: "column", target: -1 }, |
1897 |
details: { type: "column", target: -1 }, |
1893 |
}, |
1898 |
}, |
|
|
1899 |
createdRow: function(row, data, dataIndex) { |
1900 |
const expandCell = $('td.dtr-control', row).last(); |
1901 |
expandCell.attr('title', 'Expand or collapse row details'); |
1902 |
expandCell.attr('aria-label', 'Expand or collapse row details'); |
1903 |
} |
1894 |
}, |
1904 |
}, |
1895 |
table_settings |
1905 |
table_settings |
1896 |
); |
1906 |
); |
Lines 1908-1913
Link Here
|
1908 |
columnDefs: [ |
1918 |
columnDefs: [ |
1909 |
{ className: "dtr-control", orderable: false, targets: -1 }, |
1919 |
{ className: "dtr-control", orderable: false, targets: -1 }, |
1910 |
], |
1920 |
], |
|
|
1921 |
createdRow: function(row, data, dataIndex) { |
1922 |
const expandCell = $('td.dtr-control', row).last(); |
1923 |
expandCell.attr('title', 'Expand or collapse row details'); |
1924 |
expandCell.attr('aria-label', 'Expand or collapse row details'); |
1925 |
} |
1911 |
}, |
1926 |
}, |
1912 |
serial_table_settings |
1927 |
serial_table_settings |
1913 |
); |
1928 |
); |
1914 |
- |
|
|