views:

17

answers:

1

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?

A: 

Telerik ASP.NET MVC 2010 Q3 Beta has Custom Toolbar template functionality implemented. An example can be seen in demo which actually does implement pretty much what you want.

Bcelik