This is a migrated thread and some comments may be shown as answers.

[Solved] Display Controls in first Row of Telerik asp.net ajax radgrid

1 Answer 105 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Leadeng Leadeng
Top achievements
Rank 1
Leadeng Leadeng asked on 20 Oct 2009, 10:23 PM
Dear Telerik
                       I need to display in first row of radgrid(asp.net ajax radgrid) controls like combobox,textbox,raddatepicker,radtimepicker
These controls should be displayed after the header column.only the first row should contain these controls.the other rows in radgrid will be filled using database records at runtime.Please let me know whether it is possible to display controls in first row of asp.net ajax radgrid.It is urgent.Hope u will let us know.

Thanks and Regards
sri

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 21 Oct 2009, 04:28 AM
Hello Sri,

A suggestion would be to make use of the FilterTemplate for each column in the grid to display desired controls after the header row:
aspx:
 <telerik:GridBoundColumn DataField="Date" HeaderText="Date" UniqueName="Date"
     <FilterTemplate>                                
         <telerik:RadDatePicker ID="DatePicker1" runat="server"></telerik:RadDatePicker> 
     </FilterTemplate> 
 </telerik:GridBoundColumn> 

Hope that makes sense..
Princy.
Tags
Grid
Asked by
Leadeng Leadeng
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or