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

Show Header at Top and Bottom

2 Answers 214 Views
Grid
This is a migrated thread and some comments may be shown as answers.
DonKitchen
Top achievements
Rank 1
DonKitchen asked on 16 Oct 2008, 01:00 PM
Is there a way to show the column headers at both the top and the bottom?  I have a long grid that I don't want to have paging on where I'd like to mirror the header on the bottom too.

Thanks!

2 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 16 Oct 2008, 01:19 PM
Hello,

A suggestion would be to set the footer text as same as the header text. Also set the ShowFooter property of the grid to true.
aspx:
<telerik:RadGrid ID="RadGrid1" ShowFooter="true" DataSourceID="SqlDataSource1"  runat="server" > 
            <MasterTableView>         
             
            <Columns>        
            <telerik:GridBoundColumn DataField="LastName" UniqueName="LastName" FooterText="LastName" HeaderText="LastName">  
                     
            </telerik:GridBoundColumn> 
          </Columns> 

Thanks
Princy.


0
DonKitchen
Top achievements
Rank 1
answered on 16 Oct 2008, 01:27 PM
I am already using the footer to show Totals for each column, so that won't be an option.  I should have mentioned that earlier.
Tags
Grid
Asked by
DonKitchen
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
DonKitchen
Top achievements
Rank 1
Share this question
or