我需要在表的thead中添加一行,用于输入和选择用作过滤的参数。 或多或少我想留下来:
<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>
如何使用ASP.NET MVC的帮助程序telerik网格在表中添加此tr?