поскольку вы можете видеть, что значки сортировки на моем Datatable находятся в правом углу столбца:
Можно ли выровнять их слева, чтобы они отображались сразу после текста?
т.
# ^ Technician ^ Completed Date ^
Спасибо
Код в соответствии с запросом:
<div class="dataTable_wrapper">
<table class="table table-striped table-hover" id="table-d">
<thead>
<tr>
<th>{% trans %} id {% endtrans %}</th>
<th>{% trans %} technician {% endtrans %}</th>
<th>{% trans %} date {% endtrans %}</th>
<th>{% trans %} summary {% endtrans %}</th>
</tr>
</thead>
</table>
</div>
и
$('#table-d').DataTable( {
"processing": true,
"serverSide": true,
"ajax": "{{ path('table_data') }}",
"pageLength": 10
})'