Declined
Last Updated: 26 Aug 2022 10:57 by ADMIN
ADMIN
Created by: Viktor Tachev
Comments: 1
Category: Grid
Type: Feature Request
2

			
Completed
Last Updated: 09 Sep 2015 13:54 by ADMIN
Won't Fix
Last Updated: 16 Aug 2024 11:21 by ADMIN
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: 03 Nov 2014 15:01 by ADMIN
We are using version 2012.Q3 of Telerik, for the RadGrid control.

Once we updated to VS 2013 Update 2, we experienced a rendering problem on our development machines for all RadGrids on our site.

Upon further review we found out that this was due to the Browser Link feature in VS 2013. Browser Link appears to inject code between the development environment and the web server(s).

We were able to fix this upon finding an article pointing us towards the Browser Link feature. However it did take quite a while to figure out the issue, so we wanted to pass this along so that you could create a Knowledge Base article about this so that others can find the solution more easily and quickly.

Resolution:
Add the following item to the AppSettings section of the Web.config
<add key="vs:EnableBrowserLink" value="false" />

References:
http://weblogs.asp.net/imranbaloch/archive/2013/10/23/messy-html-and-js-errors-when-you-install-visual-studio-2013.aspx

http://stackoverflow.com/questions/19513631/radgrid-rendering-differently-in-different-machine-of-100-same-application-when

http://www.asp.net/visual-studio/overview/2013/using-browser-link 
(what is Browser Link)
Declined
Last Updated: 03 Nov 2014 12:29 by Elena
Created by: Padmasinh
Comments: 2
Category: Grid
Type: Bug Report
2
My Sort order of records is persisting in normal radgrid but when i am using radgrid with grouping its not persisting.

The ragGrid during page load are as folllows.

Customer group Name        Customer Name      Sort Order
Group 1
                                              Very High                    1
                                                High                          2
                                               ABC                           3

and the filer for columns format are as follow

<telerik:GridBoundColumn HeaderText="Customer Name" FilterControlAltText="Filter column1 column"
                                    DataField="Name" UniqueName="Name" FilterControlWidth="150px" AutoPostBackOnFilter="true"
                                    HtmlEncode="true" CurrentFilterFunction="Contains" ShowFilterIcon="false">
                                </telerik:GridBoundColumn>

And when i filter the grid on customer name with "high" word the grid shows results as follow

Customer group Name        Customer Name      Sort Order
Group 1
                                                  High                        2
                                              Very  High                   1
                                               
And i am needdatasource event then also this problem occurring so please provide me any solution.
Declined
Last Updated: 03 Nov 2014 12:31 by Elena
I want column width state maintain on postback. here with i am attaching may aspx page
Declined
Last Updated: 26 Nov 2015 12:28 by ADMIN
Created by: Padmasinh
Comments: 1
Category: Grid
Type: Feature Request
2
I want to use tab key for filter.
First i am entering filter text in first column then pressing tab. So i want after press tab the courser should go to next column and should allow typing. Check my demo first search with name column then press tab key the courser not going to next column and not allowing typing.
Won't Fix
Last Updated: 14 Apr 2015 14:53 by ADMIN
Completed
Last Updated: 10 Dec 2014 08:54 by ADMIN
Completed
Last Updated: 11 Aug 2015 08:38 by ADMIN
Won't Fix
Last Updated: 20 Jun 2022 14:40 by ADMIN
Completed
Last Updated: 09 Dec 2015 14:09 by Gal
Add RadGrid Support per column/per grid for timezone like the RadScheduler 
Same with the  RadDateTimePicker, RadDatePicker and Calendar.
Completed
Last Updated: 20 Jul 2015 14:14 by Christoph Köchling
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Completed
Last Updated: 29 Jul 2016 13:54 by ADMIN
Hello,

When the user exports RadGrid data, an answer is sent back by the server to the client with the exported file (through response-redirect). Our project requirement is the server will create the export file, without sending such Response-Redirect.
Therefore, it would be nice to have the option to cancel the Response-Redirect.

Thanks,
Daniel.
.Net Programmer as ISR Corp.