Type in the DataTables search box (e.g. alpha, backup, svc) and matching text inside cells will be highlighted.
| Name | Department | Notes |
|---|---|---|
| svc_backup | IT | Nightly backup job for Alpha cluster |
| alice | HR | Onboarding: Alpha / Bravo / Charlie |
| bob | Finance | Quarterly report for Bravo region |
| svc_sql | DBA | SQL maintenance window – Alpha and Delta |
| carol | IT | Incident review: gamma outage |
$('#demoSearchHighlighter').DataTable({
searching: true,
searchHighlighter: {
minLength: 1,
caseSensitive: false,
includeColumnSearch: true,
tag: 'mark',
className: 'hfx-dt-search-hit',
hitStyle: {
backgroundColor: 'rgba(255, 230, 170, 0.9)',
textColor: '#000',
css: { 'border-radius': '3px', 'padding': '0 2px' }
}
}
});