I have this Script that works and does what I need, but it will only apply to the first 10 rows, not to the next page. My Table id is “MyTable” Here is my JavaScript:
JavaScript
x
26
26
1
$(document).ready(function()
2
{
3
$(function()
4
{
5
$("#MyTable td").each(function()
6
{
7
if ($(this).text() == 'Pending')
8
{
9
$(this).css('background-color',
10
'#F3E498');
11
}
12
if ($(this).text() == 'Approved')
13
{
14
$(this).css('background-color',
15
'#C5F97E');
16
}
17
if ($(this).text() == 'Denied')
18
{
19
$(this).css('background-color',
20
'#FF5733');
21
}
22
23
});
24
});
25
});
26
So needless to say I am kida stuck here where at row 11th, my script quits working through next pages, I would appreciate any suggestions. See Image here
Advertisement
Answer
Only rows that are visible in the datatable are actually in the DOM. Therefore you could either call your $.each loop each time the page changes or (I think better) use https://datatables.net/reference/option/createdRow or https://datatables.net/reference/option/columns.createdCell
Here’s a working JSFiddle: https://jsfiddle.net/dhqcekm9/
CSS
JavaScript
1
12
12
1
.approved {
2
background-color: #C5F97E;
3
}
4
5
.denied {
6
background-color: #FF5733;
7
}
8
9
.pending {
10
background-color: #F3E498;
11
}
12
HTML
JavaScript
1
61
61
1
<table id="table">
2
<thead>
3
<th>ID</th>
4
<th>Status</th>
5
</thead>
6
<tbody>
7
<tr>
8
<td>1</td>
9
<td>Approved</td>
10
</tr>
11
<tr>
12
<td>2</td>
13
<td>Denied</td>
14
</tr>
15
<tr>
16
<td>3</td>
17
<td>Approved</td>
18
</tr>
19
<tr>
20
<td>4</td>
21
<td>Pending</td>
22
</tr>
23
<tr>
24
<td>5</td>
25
<td>Pending</td>
26
</tr>
27
<tr>
28
<td>6</td>
29
<td>Pending</td>
30
</tr>
31
<tr>
32
<td>7</td>
33
<td>Pending</td>
34
</tr>
35
<tr>
36
<td>8</td>
37
<td>Pending</td>
38
</tr>
39
<tr>
40
<td>9</td>
41
<td>Denied</td>
42
</tr>
43
<tr>
44
<td>10</td>
45
<td>Pending</td>
46
</tr>
47
<tr>
48
<td>11</td>
49
<td>Pending</td>
50
</tr>
51
<tr>
52
<td>12</td>
53
<td>Approved</td>
54
</tr>
55
<tr>
56
<td>13</td>
57
<td>Denied</td>
58
</tr>
59
</tbody>
60
</table>
61
Javascript
JavaScript
1
19
19
1
$('#table').dataTable({
2
'columnDefs': [{
3
'targets': 1,
4
'createdCell': function(td, cellData, rowData, row, col) {
5
switch (cellData) {
6
case 'Approved':
7
$(td).addClass('approved');
8
break;
9
case 'Denied':
10
$(td).addClass('denied');
11
break;
12
case 'Pending':
13
$(td).addClass('pending');
14
break;
15
}
16
}
17
}]
18
});
19