Unplanned
Last Updated: 14 Jun 2021 13:10 by ADMIN
Created by: Daniel
Comments: 0
Category: Grid
Type: Feature Request
2
Hello,

RadGrid that has a master and detail tables and is rebinded to another data-source. Please automatically change all information and details of the RadGrid, including details-view. Currently,  only the master table is rebinded, not the details.

Please see an example of the problem in the my forum question:
 http://www.telerik.com/forums/radgrid-detailtable-doesn-t-rebind!

Thanks,
Daniel.
.NET Programmer at
ISR Corp
Completed
Last Updated: 11 Aug 2015 08:38 by ADMIN
Unplanned
Last Updated: 26 May 2021 19:47 by ADMIN
Created by: Erich
Comments: 0
Category: Grid
Type: Feature Request
2
I would like to suggest that the Buttons in the RadGrid allow databinding to the CommandName and CommandArgument fields.  And pretty much all the buttons or anything that triggers an ItemCommand event that allow a CommandName and CommandArgument have their properties to be databound and accessible in the code behind.

Thanks!!!
Completed
Last Updated: 10 Dec 2014 08:54 by ADMIN
Unplanned
Last Updated: 08 Jan 2021 12:46 by ADMIN
Created by: Minculescu
Comments: 0
Category: Grid
Type: Feature Request
2
It would be nice to have a "remove" button on the edit template, where the user could delete an image that was uploaded and saved on the database before. 
Unplanned
Last Updated: 08 Apr 2020 16:24 by ADMIN
Created by: Erik
Comments: 1
Category: Grid
Type: Feature Request
2
I would like to get a visual indiation on the grouppanel of the RadGrid for column which are not allowed to group on.

Forum reference:
http://www.telerik.com/forums/grouppanel-drop-indicator-style-of-not-groupable-columns#yjnsALhKekGuqD_Ze0Kmqw
Unplanned
Last Updated: 09 Mar 2021 15:26 by ADMIN
Created by: cw
Comments: 0
Category: Grid
Type: Feature Request
2
Would be nice to have RadGrid offer the feature to have options to Merge Cells with same contents so the report/grid won't be so busy. Users typically expect this kind of look and feel. 

Example & code included:
    http://www.marss.co.ua/2010/01/how-to-merge-cells-with-equal-values-in.html

This ticket discussed it also: 1091013

Others in forums asked about this also in the past since about 2009, if we google on: telerik grid asp.net merge cell. .
http://www.telerik.com/forums/problems-with-merge-row-in-radgrid

http://www.telerik.com/forums/merge-cells-by-column

http://www.telerik.com/forums/merge-rows

Then I found this link among the results from google. Though, I wish there are RowMerge and ColumnMerge properties in RadGrid for us to turn it on/off. That will be wonderful.

http://www.telerik.com/support/kb/winforms/details/radgridview-merge-celss

This example is also from the following link from the same google search result, the first link.

http://www.telerik.com/forums/merge-cell-in-radgrid

Thanks.

Completed
Last Updated: 09 Sep 2015 13:54 by ADMIN
Unplanned
Last Updated: 12 Jan 2015 16:56 by ADMIN
Unplanned
Last Updated: 21 Dec 2016 14:33 by ADMIN
Unplanned
Last Updated: 03 Nov 2020 11:16 by ADMIN
The FooterAggregateFormatString functionality of the Grid does not affect the Aggregates values format in a client-bound Grid.

Code to reproduce:
            <telerik:RadGrid RenderMode="Lightweight" ID="RadGrid1" runat="server" ClientDataSourceID="RadClientDataSource1" AllowPaging="true" AllowSorting="true" AllowFilteringByColumn="true" ShowFooter="true">
                <MasterTableView ClientDataKeyNames="CustomerID" EditMode="Batch" CommandItemDisplay="Top" BatchEditingSettings-HighlightDeletedRows="true">
                    <Columns>
                        <telerik:GridBoundColumn DataField="CustomerID" HeaderText="Customer ID"  Aggregate="Count" FooterAggregateFormatString="No currency sign here: {0:C}">
                        </telerik:GridBoundColumn>
                        <telerik:GridBoundColumn DataField="CompanyName" HeaderText="Company Name" ColumnEditorID="GridTextBoxEditor">
                        </telerik:GridBoundColumn>
                        <telerik:GridBoundColumn DataField="ContactName" HeaderText="Contact Name" ColumnEditorID="GridTextBoxEditor">
                        </telerik:GridBoundColumn>
                        <telerik:GridBoundColumn DataField="ContactTitle" HeaderText="Contact Title" ColumnEditorID="GridTextBoxEditor">
                        </telerik:GridBoundColumn>
                        <telerik:GridClientDeleteColumn HeaderText="Delete">
                            <HeaderStyle Width="70px" />
                        </telerik:GridClientDeleteColumn>
                    </Columns>
                </MasterTableView>
                <ClientSettings>
                    <ClientEvents OnUserAction="UserAction" />
                </ClientSettings>
            </telerik:RadGrid>
Unplanned
Last Updated: 16 Nov 2016 16:13 by Jesus Orlando
ADMIN
Created by: Daniel
Comments: 1
Category: Grid
Type: Feature Request
2
Property to disable the internal control state which is helpful in scenarios where ViewState is turned off.

This should resolve any problems when changing columns and datasource dynamically on PageInit, when sorting/filtering/etc is applied during the previous post.
Unplanned
Last Updated: 27 May 2021 18:28 by ADMIN
Created by: 小章
Comments: 0
Category: Grid
Type: Feature Request
2
Because linq to entities no support DateTime.Parse() , So can you DateTime.Parse() to DateTime method

http://www.telerik.com/forums/how-override-filter-pattern-from-radgrid
Won't Fix
Last Updated: 14 Apr 2015 14:53 by ADMIN
Completed
Last Updated: 13 Nov 2015 15:36 by Robert
Completed
Last Updated: 20 Apr 2022 15:37 by ADMIN
It would be nice if you provided the same level of documentation on server side programming as you do on client side programming. Specifically I suggest you include some documentation on finding and manipulating controls on the itemdatabound event. Currently the only source for this information is in your forums and most of it consists of try this, if that doesn't work than try that. This is very frustrating because server side programming on RadGrid is substantially different than in Microsoft Grid Control.
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Sample code: 

<asp:Button ID="Button1" runat="server" Text="Export" />
<telerik:RadGrid ID="RadGrid1" runat="server">
    <ExportSettings OpenInNewWindow="true" />
</telerik:RadGrid>

void RadGrid1_PdfExporting(object sender, Telerik.Web.UI.GridPdfExportingArgs e)
{
    e.RawHTML = "<a href="absolute url to pdf file">dasdasdasdas</a>";
}

protected void Button1_Click(object sender, EventArgs e)
{
    RadGrid1.MasterTableView.ExportToPdf();            
}
Declined
Last Updated: 20 Sep 2016 05:36 by Jon
Rather than simply using the drag and drop method to reorder rows within a rad grid, allow for the built in functionality where you can simply move rows up and down client side so that the user can sort the data by rows rather than columns.

Feature request came after a customer had a grid of data that was sorted in a sorted order but they wanted the ability to not only select what rows they wanted which we coded using the checkbox column, but they then wanted to be able to sort the rows they had selected as the selected rows were being exported to a PDF or Excel so wanted them in a certain order.