I am trying to put a select filter on a column with html content.
The filter finds the id's of the html strings but the table shows no records once I select a value in the filter.
See example here: http://live.datatables.net/rabesuta/1/edit?html,js,output
relevant td
content
<td><i id="Yes" class="fa fa-circle" style="color:green;font-size:20px;"></i></td>
yadcf setup:
yadcf.init(table,[
{
column_number: 0,
column_data_type: 'html',
html_data_type: 'id'
}
]);