Hi.
I've just installed the final release of RadControls for ASP.NET AJAX, only to discover that my RadGrids are not skinned anymore. Have been working fine until now. There's no CSS styling or skin images present. I haven't done anything with the code.
I have copied the new Telerik Skins folder into my application.
And the lack of skinning is only a problem with RadGrid, all the other controls I have present in my application are skinned fine.
There's no CSS styling on that page that could override the grid skinning. I'm puzzled. I have tried to change the Skin parameter of RadGrid without any change. The grid is simply not skinned.
I'm using this code:
I've just installed the final release of RadControls for ASP.NET AJAX, only to discover that my RadGrids are not skinned anymore. Have been working fine until now. There's no CSS styling or skin images present. I haven't done anything with the code.
I have copied the new Telerik Skins folder into my application.
And the lack of skinning is only a problem with RadGrid, all the other controls I have present in my application are skinned fine.
There's no CSS styling on that page that could override the grid skinning. I'm puzzled. I have tried to change the Skin parameter of RadGrid without any change. The grid is simply not skinned.
I'm using this code:
| <telerik:RadAjaxManager ID="ajaxDokumenter" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="gridListe" EventName="EditCommand"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="formDokumenter" LoadingPanelID="loadingDokument" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| <telerik:RadAjaxLoadingPanel ID="loadingDokument" runat="server" InitialDelayTime="1000"> |
| <img alt="Laster..." src='/images/AJAX/ajax-loader.gif' style="border:0;" /> |
| </telerik:RadAjaxLoadingPanel> |
| <telerik:RadGrid ID="gridListe" runat="server" ShowStatusBar="false" |
| StatusBarSettings-LoadingText="Laster..." StatusBarSettings-ReadyText="Klar" |
| PageSize="15" AllowPaging="True" AllowSorting="true" |
| AllowFilteringByColumn="false" CssClass="navStuff"> |
| <MasterTableView DataKeyNames="ID,DokumentNummer" AutoGenerateColumns="False" CommandItemDisplay="Top" |
| AllowPaging="True" AllowSorting="True" GroupLoadMode="Client" > |
| <CommandItemTemplate> |
| (some code) |
| </CommandItemTemplate> |
| <Columns> |
| (some code) |
| </Columns> |
| <DetailTables> |
| (some code) |
| </DetailTables> |
| <EditFormSettings UserControlName="~/UserControls/Ny/Maler/InsertMal.ascx" EditFormType="WebUserControl" > |
| <EditColumn UniqueName="EditCommandColumn"> |
| </EditColumn> |
| </EditFormSettings> |
| <CommandItemSettings AddNewRecordText="Legg til nytt dokument" RefreshText="Oppdater" /> |
| <NoRecordsTemplate> |
| Ingen dokumenter ble funnet. |
| </NoRecordsTemplate> |
| </MasterTableView> |
| <PagerStyle Mode="NextPrevAndNumeric" AlwaysVisible="true" |
| PagerTextFormat="Sider: {4} | Viser side {0} av {1}, dokument {2} til {3} av totalt {5}" /> |
| </telerik:RadGrid> |
