我需要在表格的开头添加一行,用于输入和选择用作过滤参数的内容。这或多或少是我想留下的:
<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?