Declined
Last Updated: 21 Jan 2015 11:25 by ADMIN
Created by: Naveen
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
When i try to perform filter, browser shows Server time out or at some times it will work after 5 mins. I have almost 25k records in the grid. Selection is working fine. Can any one help?
Declined
Last Updated: 01 Nov 2013 13:06 by ADMIN
Completed
Last Updated: 27 Feb 2014 14:13 by Robert Helm
Declined
Last Updated: 21 Jan 2015 11:44 by ADMIN
Created by: Christopher
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Regarding: Client-side Binding, Programmatic Binding

Attempted to perform Client-side Binding to reduce sort and filtering network traffic, using this example http://demos.telerik.com/aspnet-ajax/grid/examples/client/databinding/defaultcs.aspx#qsf-demo-source as the basis of my work.

I could not get the server-side public static GetData method to get invoked (and stop on a source code break-point), regardless what I tried.

However, I would get a runtime error immediately if I comment out the GetData method entirely.

The example code on the Telerik website cannot be downloaded and relies on a SQL Server database (cannot find a way of examining working code -- e.g. hardcoded values that are returned from GetData static WebMethod).

Would really like to get client-side data-binding working, but am unsure how to proceed.

NOTE: I also tried enabling DataBinding > EnableCaching, but break-point on NeedDataSource still got hit when gridview data was sorted or filtered (and I want sorting and filtering to occur client-side).

RadGrid version 2013.1.220.40
Won't Fix
Last Updated: 29 Jun 2015 13:21 by ADMIN
ADMIN
Created by: Martin
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Declined
Last Updated: 30 Jun 2016 15:55 by ADMIN
Both properties could be used in scenario when the control is bound with WebService. With assigning values directly to the aforementioned properties, you could omit specifying the Text and Value fields in the WebService, but only point the desirable parameters in the declaration of the control.

This could be very useful, especially when a custom class is used to populate the control in the WebService and if this class does not possess Text and Value fields.
Completed
Last Updated: 21 Aug 2013 12:11 by Nick
The behavior is observable in the demos on Telerik's site. I am using ie10 with ie7 document mode.
Declined
Last Updated: 22 Jan 2015 12:04 by Pankaj
Created by: Pankaj
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0
currently migrating from SharePoint 2010 to Sharepoint 2013 facing issues as Radgrid control 2010.3.1109.35 not working

do we required to download new dll for sharepoint 2013?
does telerik radgrid support 4.5 framework?
Completed
Last Updated: 19 Jun 2020 13:51 by ADMIN
Release R2 2020
I need a timeline AJAX component to "Visualize sequences of events in a user friendly manner" like this one in WPF : http://www.telerik.com/products/wpf/timeline.aspx

Do you plan to do that ?
Thanks
Completed
Last Updated: 21 Aug 2013 12:45 by Peter
Other skins or browsers are working fine.  (Didn't test other IE Versions)
Bug appears also at the Demo site http://demos.telerik.com/aspnet-ajax/dropdownlist/examples/functionality/templates/defaultcs.aspx
Declined
Last Updated: 01 Nov 2013 13:06 by stuart
See http://www.telerik.com/community/forums/aspnet-ajax/async-upload/null-exception-with-overridden-asyncuploadhandler.aspx
Declined
Last Updated: 11 Oct 2021 09:38 by ADMIN
ADMIN
Created by: Jeff Fritz
Comments: 4
Category: UI for ASP.NET AJAX
Type: Feature Request
4
It would be helpful if the BarCode control could render DataMatrix barcodes
Completed
Last Updated: 12 Jun 2015 13:39 by Alex
Declined
Last Updated: 20 Jan 2015 16:13 by ADMIN
I am having an issue exporting data from a Radgrid when using a Radbutton. Even though I disable the AjaxManager from the code behind the Radgrid wound't export the data. However if I click the button a second time the export window opens, but the file doesn't contain any data. Is there some easy work around in order to fix this issue. If I completely remove the AjaxManager the problem is solved, but makes the usage and layout of the site bad. 

Here is my code...

ASPX:
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" >
    <ClientEvents OnRequestStart="RequestStart" OnResponseEnd="ResponseEnd" />
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="btn_Search">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RG_DataList" LoadingPanelID="ContentLoadingPanel" />
                    <telerik:AjaxUpdatedControl ControlID="datePickersBar" />
                    <telerik:AjaxUpdatedControl ControlID="btn_Export" UpdatePanelRenderMode="Inline" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="btn_Export">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
     </telerik:RadAjaxManager>

<div class="datePickers" id="datePickersBar">
			    <span class="sText">Select period from: </span>
			    <telerik:RadDatePicker ID="RDP_StartDate" runat="server" Culture="da-DK" 
                    HiddenInputTitleAttibute="Visually hidden input created for functionality purposes." 
                    WrapperTableSummary="Table holding date picker control for selection of dates." >
                        <Calendar UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="x" runat="server"></Calendar>

                        <DateInput DateFormat="dd-MM-yyyy" DisplayDateFormat="dd-MM-yyyy" AutoPostBack="false" LabelWidth="40%" runat="server" ></DateInput>

                        <DatePopupButton ImageUrl="" HoverImageUrl=""></DatePopupButton>
			    </telerik:RadDatePicker>
			    
			 <span class="sText">to: </span>
		        <telerik:RadDatePicker ID="RDP_FinishDate" runat="server" 
                    Culture="da-DK" 
                    HiddenInputTitleAttibute="Visually hidden input created for functionality purposes." 
                    
                    WrapperTableSummary="Table holding date picker control for selection of dates." >
                        <Calendar UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="x"></Calendar>

                        <DateInput DisplayDateFormat="dd-MM-yyyy" DateFormat="dd-MM-yyyy" LabelWidth="40%" ></DateInput>

                        <DatePopupButton ImageUrl="" HoverImageUrl=""></DatePopupButton>
			    </telerik:RadDatePicker>
                &nbsp;&nbsp;&nbsp;&nbsp;
                <telerik:RadButton ID="btn_Search" runat="server" Text="Search" 
                    onclick="btn_Search_Click" Skin="Black" >
                </telerik:RadButton>
                &nbsp;&nbsp;&nbsp;&nbsp;
                <telerik:RadButton ID="btn_Export" runat="server" Text="Export" Skin="Black" 
                    Enabled="false" Visible="true" onclick="btn_Export_Click" 
                    AutoPostBack="true" >
                </telerik:RadButton>
		    </div>
	    
	    <div class="content">
		    <asp:Panel runat="server" ID="Content">
                <telerik:RadAjaxLoadingPanel runat="server" ID="ContentLoadingPanel" 
                        IsSticky="True" CssClass="ajaxLoader" MinDisplayTime="500" 
                        EnableSkinTransparency="False" Skin="Black" />
                <telerik:RadGrid ID="RG_DataList" runat="server" Skin="Default" 
                    onprerender="RG_DataList_PreRender" >
                    <MasterTableView >
                        <CommandItemSettings ShowExportToExcelButton="true"></CommandItemSettings>
                    </MasterTableView>
                    <ExportSettings HideStructureColumns="true" ExportOnlyData="true" IgnorePaging="true" OpenInNewWindow="true">
                        <Excel Format="Biff"></Excel>
                    </ExportSettings>
                    <FilterMenu EnableImageSprites="False"></FilterMenu>
                </telerik:RadGrid>
            </asp:Panel>
	    </div>

CS:
protected void btn_Search_Click(object sender, EventArgs e)
    {
        mergeDataTable();
        btn_Export.Enabled = true;
    }

rotected void btn_Export_Click(object sender, EventArgs e)
    {
        RadAjaxManager1.EnableAJAX = false;

        RG_DataList.ExportSettings.ExportOnlyData = true;
        RG_DataList.ExportSettings.IgnorePaging = true;
       // RG_DataList.ExportSettings.OpenInNewWindow = true;
        RG_DataList.MasterTableView.ExportToExcel();
    }
Completed
Last Updated: 30 Jun 2016 15:53 by ADMIN
Created by: Jindrich
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Hallo Collegue,
It is possible to export only some columns of RadGrid to excel?

thanks,

J.Matouš
Completed
Last Updated: 30 Jun 2016 15:49 by ADMIN
Created by: Jindrich
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Hallo Collegue,
I wan to create fixex columns in RadGrid, it is possible? It should be similar like excel functionality anchor of traverse.

thanks,

J.Matouš
Completed
Last Updated: 16 Apr 2015 08:41 by Elena
Created by: Steve Tikoian
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
HotFix Build: Telerik.Web.UI_2013_1_227_Dev_hotfix

RadButton is not responding as the DefaultButton property of a Panel

Declined
Last Updated: 27 Jan 2014 10:34 by Elena
If a RadWindow contains a RadComboBox, and the RadWindow allows the "Move" behavior, there exists a rendering problem with all major browsers: If the dropdown area of the RadComboBox is expanded during a move operation of the RadWindow, the dropdown area stays behind while the RadComboBox and the RadWindow are moved.

Steps to reproduce:
1.) Create a new Telerik C# Web Application
2.) Use the code of the attached Default.aspx file
3.) Run the project and follow the instructions of the Default.aspx page

Declined
Last Updated: 12 Jan 2015 16:40 by ADMIN