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

Problem in Radgrid Control of Asp.net ajax Q1 2008

1 Answer 31 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Hrushikesh Mokashi
Top achievements
Rank 1
Hrushikesh Mokashi asked on 18 Jul 2008, 02:09 PM
  I am using RadGrid Control of asp.net ajax Q1 2008
Query.

In first grid  
1> It is not showing column name when binding table have no data.       
In second grid. I use skin as Outlook for the grid

2>Radgrid Headerwidth and itemwidth is not showing same, even though i set same hederwidth and itemwidth .I use skin as Outlook for the grid.
 

3>In radgrid on pageindex change it showing loading panel sometime and sometime it not showing loadingpanel.

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 21 Jul 2008, 07:22 AM
Hello Hrushikesh,

1. Have you set the DataField and HeaderText properties of the Gridcolumn?
aspx:
 <telerik:GridBoundColumn DataField="Name" UniqueName="Name" HeaderText="Name">                     
 </telerik:GridBoundColumn> 

2. I tried this at my end with the RadGrid Skin set as Outlook and its working as expected.
cs:
<telerik:RadGrid ID="RadGrid1" AllowPaging="true"  PageSize="3" ShowStatusBar="true" Skin="Outlook" runat="server" AutoGenerateColumns="False"
            <MasterTableView > 
            <Columns> 
            <telerik:GridBoundColumn DataField="FirstName" UniqueName="FirstName" HeaderText="FirstName"
            <ItemStyle Width="100" />  
            <HeaderStyle Width="100" />           
            </telerik:GridBoundColumn> 
            </Columns>                              
            </MasterTableView> 
</telerik:RadGrid> 

Thanks
Princy.

Tags
Grid
Asked by
Hrushikesh Mokashi
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or