如何将Grid helper Telerik中的假行添加到ASP.NET MVC中

时间:2010-10-28 13:01:44

标签: asp.net-mvc telerik-grid

我需要在表的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?

1 个答案:

答案 0 :(得分:0)

Telerik ASP.NET MVC 2010 Q3 Beta已实施自定义工具栏模板功能。在demo中可以看到一个例子,它实际上实现了你想要的东西。