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

			
Won't Fix
Last Updated: 19 Nov 2015 08:11 by ADMIN
Completed
Last Updated: 17 Nov 2015 06:11 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 17 Nov 2015 06:00 by ADMIN
Won't Fix
Last Updated: 13 Nov 2015 15:50 by ADMIN
ADMIN
Created by: Dobromir
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 13 Nov 2015 09:19 by ADMIN
The best approach is to handle the OnClientTileClicking event for the TileList and determine whether it should be cancelled: http://www.telerik.com/help/aspnet-ajax/tilelist-client-side-events-onclienttileclicking.html.

A possible way to change the behavior is to pass the _cancel field value from the Clicking event of the Tile to the TileClicking event of the TileList with the following override.

			var $T = Telerik.Web.UI;
			$T.RadTileList.prototype._onTileClicking = function (tile, args)
			{
				var eventArgs = new $T.RadTileListCancelEventArgs(tile, args.get_value());
				eventArgs.set_cancel(args.get_cancel()); //the change - pass the _cancel argument to the TileList handler too
				this.raiseEvent("tileClicking", eventArgs);
				args.set_cancel(tile._isDragged || eventArgs.get_cancel());
				args.set_value(eventArgs.get_value());
				tile._isDragged = false;
			}
Declined
Last Updated: 12 Nov 2015 12:34 by ADMIN
Created by: DNN Support
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Brief Description of Issue: If you try to put HTML comments into the HTML view of an HTML module using the default rich text editor you will find that the comments are visible when you save the content.

Clear Steps to Reproduce:
Install DotNetNuke 7.0.2
Login with admin/host
Edit an HTML module
Switch to the HTML view of the editor
put <!--Test-->
Save
View the page and you will see <!--Test-->
Expected Result:
The comment should be just that, a COMMENT, not visible to the browser unless you were viewing the source of the page.