Hi,
I am using older version of telerik controls. RadGrid is not rendering its skin (any which i set) and also its giving javascript error "RadGridNameSpace is undefined". I am only getting this error on my one site. while it is working perfect on my other sites.
I have already put radcontrols folder on root of site. also rad dlls in bin folder. Its very strange to me why it is happening with me.please help me to resolve this issue.
<radg:RadGrid ID="gridReport" runat="server" AllowPaging="True" AllowSorting="True"
AutoGenerateColumns="True" EnableAJAX="True" EnableAJAXLoadingTemplate="True"
EnableOutsideScripts="True"
PagerStyle-Mode="NumericPages" PagerStyle-Position="TopAndBottom" PageSize="20"
Skin="GrayGrid" Width="100%" OnNeedDataSource="gridReport_NeedDataSource" OnItemDataBound="gridReport_ItemDataBound" OnSortCommand="gridReport_SortCommand" OnColumnCreated="gridReport_ColumnCreated">
<ClientSettings>
<ClientEvents OnRequestStart="RequestStart" />
<Selecting AllowRowSelect="True" />
</ClientSettings>
<MasterTableView CommandItemDisplay="Top">
<CommandItemTemplate>
<table class="TGridComTemplate">
<tr>
<td id="tdButtonExport">
<asp:LinkButton ID="lbtExcel" runat="server" CssClass="LabelStyle" OnClick="lbtExcel_Click"
OnClientClick="return ExportReport()"><img style="border:0px" alt="" src="../../Images/excel.gif" /> Export to Excel</asp:LinkButton></td>
<td id="tdPrint">
<asp:LinkButton ID="lbtPrint" runat="server" CssClass="LabelStyle"
OnClientClick="return PrintReport()" OnClick="lbtPrint_Click"><img style="border:0px" alt="" src="../../Images/print.gif" /> Print</asp:LinkButton>
</td>
</tr>
</table>
</CommandItemTemplate>
<Columns>
</Columns>
<ExpandCollapseColumn Visible="False">
<HeaderStyle Width="19px" />
</ExpandCollapseColumn>
<RowIndicatorColumn Visible="False">
<HeaderStyle Width="20px" />
</RowIndicatorColumn>
</MasterTableView>
<CommandItemStyle HorizontalAlign="Left" />
<HeaderStyle HorizontalAlign="Center" />
<ItemStyle HorizontalAlign="Center" />
<AlternatingItemStyle HorizontalAlign="Center" />
<PagerStyle Mode="NumericPages" Position="TopAndBottom" />
</radg:RadGrid>