Hello,
I am attempting to display aggregate sums of groups in group headers in my RadGrid. I have attempted to use the instructions in the following article: http://docs.telerik.com/devtools/aspnet-ajax/controls/grid/functionality/grouping/how-to/aligning-items-in-groupheader
My issue is due to the fact that I am using multiple levels of grouping. I am not sure why, but when I use the code in the article mentioned above, the entries in my group headers become misaligned as shown in the attached image. In the picture shown, my goal is to have the 10,000's be lined up no matter which level of grouping they are in, and to have the product names behave as they would be normally. Is there any easier way to display group totals for each column in the group headers? If not, is there some modification that can be made to the code in the help article that will ensure that the header items are aligned in each level of group headers? Thanks
Can the Radpivotgrid make use of the pivot commands in SQL to have the SQL system handle the summary processing?
For example the SQL script below seemed to not format correctly in the pivotgrid
create table Report
(
deck char(3),
Jib_in float,
rev float,
rev_insight float,
jib_out float,
creation float
)
insert into Report values
('A_1',0.345,0,0,1.23,20140212),
('B_2',0.456,0,4,2.34,20140215),
('C_3',0.554,0,6,0.45,20140217),
('D_4',0.231,0,8,7.98,20140222),
('E_5',0.453,0,0,5.67,20140219),
('F_6',0.344,0,3,7.23,20140223)
SELECT HEADER, [A_1],[B_2],[C_3],[D_4],[E_5],[F_6]
FROM
(SELECT DECK,HEADER, VALUE FROM REPORT
UNPIVOT
(
VALUE FOR HEADER IN ([JIB_IN],[REV_INSIGHT],[JIB_OUT],[CREATION])
) UNPIV
) SRC
PIVOT
(
SUM(VALUE)
FOR DECK IN ([A_1],[B_2],[C_3],[D_4],[E_5],[F_6])
) PIV
Hi,
I am trying to make some changes to the default appearance of RadAsyncUpload control. However I am unable to change the appearance. Basically I want to hide the Green dot icon which shows if file uploaded successfully or not and the Change the Red cross icon which shows along with the Remove option.(Please check the attached image for more details). I have tried with the below css style and unfortunately it didn't work. Could you please help me.
<style> div.RadUpload .ruRemove { background-image: url('/Images/DeleteImage.png') !important; background-position: -2px 0px; width: 50px; height: 14px; } </style>
Hi,
I want to show screenshot of Doc/Pdf files instead of the default icon on the file Explorer in Thumbnails View.
The screen shot is located on my machine and I have multiple files. So for every file, screenshot will be different.
Is there a way I can replace the default icon ?
Thanks

Hi All,
I'm having issues with the this Col.
I can't get the selectvalue to fire up.
Please can you assist.
<telerik:GridDropDownColumn DataField="AstSeriesID" ListTextField ="Name" ListValueField="Id" DataSourceID="AssetSeries" HeaderText ="Asset Series"
UniqueName="AssetSeries" DropDownControlType ="RadComboBox" EnableEmptyListItem="True" EmptyListItemValue=" " EmptyListItemText="<Add New Seies>">
</telerik:GridDropDownColumn>
Kind Regards,
Liz


Hi
My auto complete box gets populated with tokens programmatically by other actions on my page, I would like the user to be able to delete these tokens but not to be able to type in free text - is this possible?
Good Morning,
I use a RadPanelBar to hide or show the filter of a grid .
I use the same code in two webform identically (in both pages the PanelBar and the grid are within
a RadPageView,It could be an important detail) .
Image Bug 001 : Initial scenario panel bar filters initial uncompressed (Page correct)
Image Bug 002 : panel expanded bar after pressing the button "+" (Page correct)
In the second page, the filter part already expanded but it is not visible the entire structure of
panel bar but only its content . ( Image Bug 003 )
If I click on any part near the filter panel scomapre ( Image Bug 004 ) .
Does anyone know help me ?
I tried to replace the element ContentTemplate RadPanelItem with an ItemTemplate
but reading the documentation is it correct use a ContentTemplate (in fact
the first page works ).
This is the code of first page (OK)
<telerik:RadPageView ID="rpwCompany" runat="server"> <div class="divFilters"> <telerik:RadPanelBar runat="server" ID="pnlBarFilterCompany" Width="100%" ExpandMode="MultipleExpandedItems" Font-Bold="true"> <Items> <telerik:RadPanelItem Expanded="false"> <ContentTemplate> <div class="filterBox"> <div class="filterItemContainer"> <div class="filterItem"> <asp:Label ID="lblTagFilterCompanyCode" runat="server" SkinID="TagFilter" CssClass="filterLabel" /> <telerik:RadTextBox ID="txtFilterCompanyCode" runat="server" MaxLength="16" Width="100px" /> </div> <div class="filterItem"> <asp:Label ID="lblTagFilterCompanyName" runat="server" SkinID="TagFilter" CssClass="filterLabel" /> <telerik:RadTextBox ID="txtFilterCompanyName" runat="server" MaxLength="16" Width="180px" /> </div> </div> <div class="filterButton"> <telerik:RadButton ID="btnSearchCompany" runat="server" Width="140px" Height="65px" Font-Bold="true" Font-Size="16px" ForeColor="#0167B1" OnClick="btnSearchCompany_Click"> <Icon PrimaryIconUrl="~/Images/24x24/search.png" PrimaryIconHeight="24px" PrimaryIconWidth="24px" /> </telerik:RadButton> <telerik:RadButton ID="btnResetFilterCompany" runat="server" Width="140px" Height="35px" Font-Bold="true" Font-Size="16px" ForeColor="Red" OnClick="btnResetFilterCompany_Click" Skin="Sunset"> </telerik:RadButton> </div> </div> </ContentTemplate> </telerik:RadPanelItem> </Items> </telerik:RadPanelBar> </div> <telerik:RadGrid ID="gvListCompany" runat="server" AllowPaging="True" ...............This is the code of second page (Error)
<telerik:RadPageView ID="rpwValidity" runat="server"> <div class="divFilters"> <telerik:RadPanelBar runat="server" ID="pnlBarFilterValidity" Width="100%" ExpandMode="MultipleExpandedItems" Font-Bold="true"> <Items> <telerik:RadPanelItem Expanded="false"> <HeaderTemplate></HeaderTemplate> <ContentTemplate> <div class="filterBox"> <div class="filterItemContainer"> <div class="filterItem"> <asp:Label ID="lblTagFilterValidityCode" runat="server" SkinID="TagFilter" CssClass="filterLabel" /> <telerik:RadTextBox ID="txtValidityCodeFilter" runat="server" MaxLength="16" Width="100px" /> </div> <div class="filterItem"> <asp:Label ID="lblTagFilterValidityName" runat="server" SkinID="TagFilter" CssClass="filterLabel" /> <telerik:RadTextBox ID="txtValidityNameFilter" runat="server" MaxLength="16" Width="180px" /> </div> <div class="filterItem"> <asp:Label ID="lblTagFilterOPTExpression" runat="server" SkinID="TagFilter" CssClass="filterLabel" /> <telerik:RadTextBox ID="txtOPTExpressionFilter" runat="server" MaxLength="16" Width="180px" /> </div> <div class="filterItem"> <asp:Label ID="lblTagFilterStartProductionDateFrom" runat="server" SkinID="TagFilter" CssClass="filterLabel" /> <telerik:RadDatePicker ID="rdpStartProductionDateFromFilter" runat="server" Width="180px" AutoPostBack="true" OnSelectedDateChanged="rdpStartProductionDateFromFilter_SelectedDateChanged" /> </div> <div class="filterItem"> <asp:Label ID="lblTagFilterStartProductionDateTo" runat="server" SkinID="TagFilter" CssClass="filterLabel" /> <telerik:RadDatePicker ID="rdpStartProductionDateToFilter" runat="server" Width="180px" AutoPostBack="true" OnSelectedDateChanged="rdpStartProductionDateToFilter_SelectedDateChanged" /> </div> <div class="filterItem"> <asp:Label ID="lblTagFilterLanguage" runat="server" SkinID="TagFilter" CssClass="filterLabel" /> <telerik:RadComboBox ID="ddlLanguageFilter" runat="server" Width="120px" /> </div> </div> <div class="filterButton"> <telerik:RadButton ID="btnSearchValidity" runat="server" Width="140px" Height="65px" Font-Bold="true" Font-Size="16px" ForeColor="#0167B1" OnClick="btnSearchValidity_Click"> <Icon PrimaryIconUrl="~/Images/24x24/search.png" PrimaryIconHeight="24px" PrimaryIconWidth="24px" /> </telerik:RadButton> <telerik:RadButton ID="btnResetFilterValidity" runat="server" Width="140px" Height="35px" Font-Bold="true" Font-Size="16px" ForeColor="Red" OnClick="btnResetFilterValidity_Click" Skin="Sunset"> </telerik:RadButton> </div> </div> </ContentTemplate> </telerik:RadPanelItem> </Items> </telerik:RadPanelBar> </div> <telerik:RadGrid ID="gvListValidity" runat="server" AllowPaging="True" ......