0

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

<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?

4

1 回答 1

0

Telerik ASP.NET MVC 2010 Q3 Beta实现了自定义工具栏模板功能。在演示中可以看到一个示例,它实际上确实实现了您想要的。

于 2010-10-28T21:08:37.603 回答