Question

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?

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top