Description
Filterable data grids with filterExpressions defined in the header cells and data cells are not
rendering correct class names for those table cells.
<netui-data:headerCell headerText="Genre" filterAction="filterGrid" filterExpression="genre">
renders:
<th class="datagrid-filtered datagrid">Genre<br /> <input type='text' value='' id='genre' /></th>
expected result:
<th class="datagrid-filtered">Genre<br /> <input type='text' value='' id='genre' /></th>
Also:
<netui-data:spanCell value="${container.item.genre}" filterExpression="genre" />
renders:
<td class="datagrid-filtered datagrid"><span>Action</span></td>
expected result:
<td class="datagrid-filtered"><span>Action</span></td>
Run the attached repro and view source in the browser.
Repro to be attach here shortly.