I need to add a line in the thead of table that going contenter inputs and selects that are used as parameters for filtering. It is more or less how I wanted to stay:
<table>
<thead>
<tr>
<th> Name </ th> ...
<th> Type </ th>
</tr>
<tr> <!-- this is the 'tr fake' in thead -->
<th> <input type="text"/> </ th>
<th> <select name="nb"> ...</ select> </ th>
<tr>
</thead>
<tbody> .....
</table>
How do I add the this tr in table using the helper telerik grid for ASP.NET MVC?