$('table').on('change', 'select', ({ target: t }) => {
const isNone = t.value === 'none';
$(t)
.closest('td')
[isNone ? 'nextAll' : 'next']()
.find('select')
.prop('disabled', isNone)
.val((i, val) => isNone ? 'none' : val);
});
document.querySelector('table').addEventListener('change', ({ target: t }) => {
if (t.tagName === 'SELECT') {
const isNone = t.value === 'none';
const { cellIndex: i, parentNode: { children } } = t.closest('td');
[...children].slice(i + 1, isNone ? undefined : i + 2).forEach(n => {
const select = n.querySelector('select');
select.disabled = isNone;
select.value = isNone ? 'none' : select.value;
});
}
});
$('#example thead tr:eq(1) th').slice(2).each(... дальше всё как было
не проканало, то есть визуально все как надо но по факту поиск из фильтра стал работать не в той колонке
table.column(i)
, а table.column(i + 2)
. Или не полагаться на передаваемый индекс, а вычислять его самостоятельно, что-то вроде const index = $(this).closest('th').index()
. let arr = str.split('|');
let [word1, word2 ] = 'фраза 1 | слово 2'.split('|');
let [word1, word2, ...otherWords] = 'фраза 1 | фраза 2 | фраза 3'.split('|');
array_map
или array_walk
.$limit = 8;
// VAR 1
$processedItems = \array_map(function ($value) use ($limit) {
$subHours = 0;
$hours = $value['hours'];
if ($hours > $limit) {
$subHours = $hours - $limit;
$hours = $limit;
}
return [
'hours' => $hours,
'sub_hours' => $subHours,
];
}, $items);
// VAR 2
\array_walk($items, function (&$value) use ($limit) {
$hours = $value['hours'];
if ($hours > $limit) {
$value['hours'] = $limit;
$value['sub_hours'] = $hours - $limit;
}
});
<table>
<tr>
<th>ID</th>
<th>Name</th>
<th>Text</th>
<th></th>
</tr>
<tr data-id="1">
<td>1</td>
<td>dasd</td>
<td>123</td>
<td><button>x</button></td>
</tr>
<tr data-id="2">
<td>2</td>
<td>Александр</td>
<td>Текст</td>
<td><button>x</button></td>
</tr>
</table>
$("table button").click(function() {
var row = $(this).closest('tr');
$.post("delete.php",{id: row.data('id')}, function(response){
if (response.success) {
row.remove();
}
}, 'json');
});
i * 4000
на (i * 2 + 1) * 1000
- чтобы таймауты не совпадали [
[
'date'=>'2010-01-01',
'hours'=>'3'
],
[
'date'=>'2012-01-01',
'hours'=>'1'
],
[
'date'=>'2010-01-01',
'hours'=>''
],
]
(date='2019-03-12' AND user_id=14)
после чего implode(' OR ', $array)
чтобы получить готовое WHERE
выражение."12.03.19".replace(/(\d+)\.(\d+)\.(\d+)/, "20$3-$2-$1");
//"2019-03-12"
new Date("12.03.19".replace(/(\d+)\.(\d+)\.(\d+)/, "20$3-$2-$1"));
//Tue Mar 12 2019 03:00:00 GMT+0300 (Москва, стандартное время)
new Date("12.03.19".replace(/(\d+)\.(\d+)\.(\d+)/, "20$3-$2-$1")).getTime()
//1552348800000