Completed
Last Updated: 04 Jul 2014 08:45 by ADMIN
Created by: Roy
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
3
New control that can create / read / write PDF documents similar to "removed by admin"
Declined
Last Updated: 12 Feb 2014 10:04 by ADMIN
Created by: Roy
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
New control that can encrypt an email (SMIME). Look at http://www.rebex.net/secure-mail.net/
Completed
Last Updated: 11 Mar 2014 12:58 by ADMIN
FIX: $create of controls with same parent are created in reverse order if using RadAjax
Completed
Last Updated: 12 Nov 2014 09:24 by Elena
ADMIN
Created by: Ianko
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
1
On opening the TemplateManager dialog under IE11 the loading panel is not hiding.

Due to this issue, the user cannot operate with this dialog under IE11.

The following example setup is resolving the issue:

<telerik:RadEditor runat="server" ID="RadEditor1"
    OnClientCommandExecuted="OnClientCommandExecuted">
</telerik:RadEditor>

<script type="text/javascript">
    function OnClientCommandExecuted(editor, args) {
        var commandName = args.get_commandName();

        if (commandName === "TemplateManager" && $telerik.isIE) {
            var dialog = editor.get_dialogOpener()._dialogContainers["TemplateManager"];

            dialog.add_activate(fixDialog);
        }
    }

    function fixDialog(dialog) {
        dialog._onWindowUrlChanged();
        dialog.remove_activate(fixDialog);
    }
</script>
Unplanned
Last Updated: 26 Sep 2014 12:19 by Avi
Declined
Last Updated: 26 Sep 2014 12:00 by ADMIN
Currently when we use virtualization in GridTemplateColumn, after scrolling columns changes from GridTemplateColumn to GridBoundcolumn. 
Unplanned
Last Updated: 22 Jan 2014 16:34 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1
When the popup elements lack boundary detection e.g.: they don't take into consideration the proximity to the edge.
Declined
Last Updated: 17 Mar 2015 08:27 by Elena
Created by: Aleksander
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Hello,

We have a problem when publishing our appplication with Telerik.  After publishing the page that uses a RadGrid and any Skin (doesn't matter if it's Default or Black or Windows7) the Skin files do not load.  The Grid loads, it seems that the javascript files load (because the calendar works), but the css and the images that are part of the skins do not load and therefore the grid looks bare (attached partial screenshot).

When we publish the application, we do it through Maven (which takes the Telerik dlls from an Archiva repository, in our company we are required to publish using it).   When we don't use Maven/Archiva to publish then the page comes our fine and everything looks nice.  When we publish using Maven/Archiva, the skin files do not load on the page.  

So something is preventing the skins files (css and images) from loading correctly on the screen. 

The only thing we noticed is that when publishing using Maven/Archiva the DLL file attributes (Date modified and Date created) gets reset to current date time.

The dlls that we are using are:

Telerik.Web.UI.dll (ver 2013.3.1114.40)
Telerik.Web.UI.Skins.dll (ver 2013.3.1114.40)

We took the dlls after publishing using Maven/Archiva and compared them to the dlls that we downloaded from Telerik and the dlls are identical.  The only thing changed was the Date created/Date modified.  If that's the reason why the css/images don't load correctly, then it's a big problem for us.  Please look into this issue for us.

Thank you,
Alex
Declined
Last Updated: 29 Oct 2014 12:39 by ADMIN
ComboBox in native render mode does not add ID / NAME attributes to the select element.
Completed
Last Updated: 31 Jan 2014 09:47 by ADMIN
This issue manifests only when JavaScript is used to close the control (i.e., oWnd.close()) and the [x] button in the titlebar works as expected. Clicking the handles makes the popup element visible, but it is not responsive (i.e., buttons in its titlebar cannot be clicked, it cannot be dragged, etd.).
A workaround is to add the following OnClientClose handler:
function OnClientClose(oWnd, args) {
	//hide remaining resizing handles in Lightweight render mode
	if (oWnd.view && oWnd.view.resizable && oWnd.view.resizable.repaint)
		oWnd.view.resizable.repaint();
	//other logic
}

A fix will be available in the Q1 2014 release.
Completed
Last Updated: 07 May 2015 12:19 by Vasssek
ADMIN
Created by: Vasya Stankova
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
3
I want it to be possible to use declarative localization for PagerTextFormat property in RadGrid Control. Currently the only way is by using code behind.
Completed
Last Updated: 24 Apr 2014 08:08 by ADMIN
Created by: Caleb Sandfort
Comments: 6
Category: UI for ASP.NET AJAX
Type: Feature Request
1
After the last release when looking at the roadmap for the Q1 2014 release there was mention of a diagramming control.  Now when I look at the roadmap it is not there.  What's going on with the diagramming control?
Declined
Last Updated: 13 Aug 2015 08:32 by ADMIN
It is design limitation. The format is not not applied because the context menu is single for all columns, but each column can have different format. The DateInput inside the filter menu can not have multiple formats at the same time.
Declined
Last Updated: 20 Jan 2015 13:08 by ADMIN
Created by: Denis
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Clicking on header column of GridClientSelectColumn grid row checkboxes remains unchecked. The grid rows becomes selected (style changed) though.
The issue appears only in IE 11, Chrome, Firefox and IE 10 work as expected.
The issue can be reproduced om Telerik's site:
http://demos.telerik.com/aspnet-ajax/grid/examples/functionality/selecting/row-selection/defaultcs.aspx

It seems not to be related to Compabitibiity View.
Completed
Last Updated: 26 Mar 2014 15:10 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Declined
Last Updated: 20 Jul 2016 13:11 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1

			
Unplanned
Last Updated: 20 Jul 2016 13:10 by ADMIN

It would be nice if all dropdown list controls (dropdownlist, radcombobox, etc) had a built-in "x" button somewhere which allowed the user to clear the selection of an item (ie set its selectedIndex to 0).

Clicking on the "x" would also fire the client-side and server-side (if applicable) SelectedIndexChanging and SelectedIndexChanged events.