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

Rad Grid - Sort Image URL

1 Answer 140 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Abirami
Top achievements
Rank 1
Abirami asked on 06 Jul 2010, 08:07 AM
Hi,

I have used RadGrid control without having Column tag as follows:
 
<telerik:RadGrid ID="radgridAuditReports" EnableEmbeddedSkins="false" runat="server" 
                Skin="WebBlue" Width="12000px"  PageSize="10" AllowSorting="true" AllowPaging="true"    
                ShowGroupPanel="false" AllowMultiRowEdit="false" AutoGenerateColumns="true" GridLines="None"   
                OnNeedDataSource="radgridAuditReports_NeedDataSource" AllowAutomaticInserts="false">  
                <SortingSettings EnableSkinSortStyles="false" /> 
                <HeaderStyle Width="125px" /> 
                <PagerStyle CssClass="Pager" Mode="NumericPages" Position="Bottom" HorizontalAlign="Left" 
                    ShowPagerText="false"></PagerStyle> 
                <CommandItemStyle HorizontalAlign="Right" /> 
                <ItemStyle HorizontalAlign="Left" Height="25px" /> 
                <AlternatingItemStyle HorizontalAlign="Left" Height="25px" /> 
                <HeaderStyle HorizontalAlign="Left" /> 
                <MasterTableView Width="100%" TableLayout="Fixed" CommandItemSettings-ShowRefreshButton="false" 
                    ItemStyle-HorizontalAlign="Left" GroupHeaderItemStyle-HorizontalAlign="Left" 
                    AllowSorting="true">  
                </MasterTableView> 
               
            </telerik:RadGrid> 
I have used a data table to bind the grid in Code behind (radgridAuditReports_NeedDataSource). When i clicked on the header text for sorting, it does not display the SortAsc/SortDesc image. Please help me with the solution to set the Sort image.
 
Thanks,
Abirami R.

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 06 Jul 2010, 09:00 AM
Hello Abirami,

From your code I can see that you have set EnableEmbeddedSkins property of RadGrid as false. If EnableEmbeddedSkins is set to false it will not render the embedded skins and you will have to register the needed CSS files by hand.

Thanks,
Princy.
Tags
Grid
Asked by
Abirami
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or