Completed
Last Updated: 11 Dec 2015 16:16 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
The editor does not go to edit mode. The problem occurs also when Auto mode is used. This prevents the developers to rely on the AutoResizeHeight functionality when a mix of all rendering modes is required. 

Possible workaround is to use the RadDeviceDetectionFramework - http://docs.telerik.com/devtools/aspnet-ajax/controls/raddevicedetectionframework - and programmatically disable the AutoResizeHeight in mobile devices:

ASP.NET
<telerik:RadEditor ID="RadEditor1" runat="server" RenderMode="Auto"
    AutoResizeHeight="true">
    <Content>
        <p>editor</p>
    </Content>
</telerik:RadEditor>

C#
using Telerik.Web.Device.Detection;

public partial class Default : System.Web.UI.Page
{
    private void Page_Load()
    {
        if (Detector.GetScreenSize(Request.UserAgent) < DeviceScreenSize.Medium) {
            RadEditor1.AutoResizeHeight = false;
        }
    }
}
Unplanned
Last Updated: 11 Dec 2015 07:51 by ADMIN
Created by: Kavitha
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2
It would be helpful , if you provide image library like Visual Studio provides.
The image library can have all the standard and specific icons of telerik.
Completed
Last Updated: 09 Dec 2015 15:11 by ADMIN
Won't Fix
Last Updated: 09 Dec 2015 13:17 by ADMIN
Completed
Last Updated: 03 Dec 2015 16:13 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Using this method to programmatically select the content area does not work as expected in Edge browser.

Possible workaround is to use ContentAreaMode="Div". Or using editor.get_contentArea().focus() method instead of editor.setFocus() (This might not work for some legacy browsers).
Completed
Last Updated: 01 Dec 2015 15:02 by ADMIN
ADMIN
Created by: Dimitar
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 30 Nov 2015 15:10 by ADMIN
Completed
Last Updated: 30 Nov 2015 09:08 by Lee
Won't Fix
Last Updated: 27 Nov 2015 09:37 by ADMIN
Completed
Last Updated: 26 Nov 2015 15:42 by ADMIN
Won't Fix
Last Updated: 26 Nov 2015 14:57 by Nick
ADMIN
Created by: Rumen
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Declined
Last Updated: 26 Nov 2015 12:23 by Elena
Issue: Export to Excel Functionality developed using Telerik Grid doesnt work in IE 11 browser.

In one my applications the Export to excel Functionality is not working in IE 11. When the export to Excel Functionality is button is clicked , it gives a blank excel workbook without any data in IE 11 browser where as this works fine in IE 8 browser. I have attached the document with screenshots.

Code snippets:

  //Start- script to enable controls after export to excel
    if (typeof (_spBodyOnLoadFunctionNames) != 'undefined' && _spBodyOnLoadFunctionNames != null) {
        _spBodyOnLoadFunctionNames.push("supressSubmitWraper");
    }
    function supressSubmitWraper() {
        _spSuppressFormOnSubmitWrapper = true;
    }
    //End- script to enable controls after export to excel

    function click_handlerConsumptionReport() {
        theForm.__EVENTTARGET.value = '__Page';
        theForm.__EVENTARGUMENT.value = 'Export';
        theForm.submit();
        theForm.__EVENTARGUMENT.value = '';
    }



Declined
Last Updated: 26 Nov 2015 09:56 by ADMIN
Completed
Last Updated: 26 Nov 2015 09:15 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 25 Nov 2015 15:20 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
2
The text in the tabs' titles of the Sliding panes of the Splitter control are not properly rotated.

Can be reproduced here:
http://demos.telerik.com/aspnet-ajax/splitter/examples/overview/defaultcs.aspx

http://demos.telerik.com/aspnet-ajax/splitter/examples/sp_firstlook/defaultcs.aspx
Completed
Last Updated: 25 Nov 2015 14:33 by ADMIN
ADMIN
Created by: Nencho
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1
The styles related to multipage are too broad and affect all child iframes, not just the one from multipage.

The second iframe must not inherit any styles

<telerik:RadMultiPage runat="server" SelectedIndex="1">
    <telerik:RadPageView runat="server" ContentUrl="http://www.telerik.com" >
    </telerik:RadPageView>
    <telerik:RadPageView runat="server">
        <div>
            <iframe src="http://www.telerik.com" ></iframe>
        </div>
    </telerik:RadPageView>
</telerik:RadMultiPage>
Completed
Last Updated: 24 Nov 2015 11:31 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
2

			
Won't Fix
Last Updated: 20 Nov 2015 08:24 by ADMIN
Completed
Last Updated: 19 Nov 2015 09:35 by ADMIN
ADMIN
Created by: Viktor Tachev
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1