I have implemented dandelion datatables v1.1.0 in a project, at this moment I need to add a second header (thead) row to add the yadcf filters like this:
I have tried adding a new feature for add the new header row but the sorting icons are in the header row like the next image:
This is the code of my dandelion table:
<datatables:table id="vendedoresTable" data="${vendedoresInstanceList}" row="vendedor" filterPlaceholder="header" ext="myAwesomeExtension">
<datatables:column titleKey="table1.header.name" property="nombre" filterable="true" sortable="true"/>
<datatables:column title="Email" property="email" filterable="true"/>
</datatables:table>
Anyone can help me how can I implement a second header row with filters like the first image? Thanks