Completed
Last Updated: 25 Feb 2014 12:47 by ADMIN
Created by: Anup
Comments: 4
Category: UI for ASP.NET AJAX
Type: Feature Request
1
We use Radar Chart extensively in our ASP.Net application. It wil be great to have this charting type in ASP.Net suite. Is Radar Chart  there in your ASP.Net roadmap ?
Thanks,
Anup
Completed
Last Updated: 31 May 2013 14:51 by Paulina
Created by: Vic
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Please provide a web control that would simulate windows 8 tiles: dragging, live-ness, etc..
Completed
Last Updated: 11 Jun 2021 14:25 by ADMIN
Created by: Rathna
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1

Hi,

It will be great to have a property in a raddock to automatically adjust its height/width to occupy the new space created when some other raddock in the layout is minimized. This will avoid the need for the user to adjust the height/width of the raddock which is still visible.

 

Completed
Last Updated: 15 Jan 2020 08:42 by ADMIN
Release R1 2020
Created by: Alexandre
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
It would be great to be able to use the MultiSelect control that is available in all the other UI controls suites. This controls allows a selection behavior and rendering customization that none of the current controls in UI for ASP.NET AJAX offers.
Completed
Last Updated: 12 Mar 2014 16:30 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1

			
Completed
Last Updated: 10 Jun 2021 18:06 by ADMIN
A functionality that will enable users to scroll into a specific node or item of the RadOrgChart on initial load of the page holding the control
Completed
Last Updated: 29 Jun 2016 06:23 by Matt
ADMIN
Created by: Dobromir
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Use the Tab key to navigate through table cells.
Completed
Last Updated: 04 Sep 2019 07:58 by ADMIN
Release R3 2019

The current colors, #0082CC and #FFFFFF that are used for forecolor and backcolor, have 4.14:1 color contrast ratio: https://webaim.org/resources/contrastchecker/?fcolor=FFFFFF&bcolor=0082CC

The minimum required color contrast ratio is 4.5:1 for AA Compliance, and 7:1 for AAA Compliance.

A possible alternative color for the #0082CC blue can be #007CC.

Won't Fix
Last Updated: 16 Apr 2015 08:17 by Elena
Won't Fix
Last Updated: 16 Apr 2015 08:15 by Elena
Completed
Last Updated: 05 May 2015 09:51 by ADMIN
ADMIN
Created by: Rumen
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1

			
Completed
Last Updated: 21 Jun 2016 15:51 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1

			
Completed
Last Updated: 03 Jun 2013 13:53 by ADMIN
This happens after the first postback. Initially it works correct, but after postback, if you select part of the entered text, and start typing, the caret begins to the begining, and the newly typed char goes at first position.
Completed
Last Updated: 28 Mar 2022 19:23 by ADMIN
ADMIN
Created by: Rumen
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1

			
Declined
Last Updated: 30 Jun 2016 15:45 by ADMIN
Created by: Samir Vaidya
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Provide a RadDateTime control that allows you to only pick the Day of the Week (Sunday - Saturday) rather than simply picking a Date or a Time.
Completed
Last Updated: 20 Sep 2016 06:51 by ADMIN
ADMIN
Created by: Viktor Tachev
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Unplanned
Last Updated: 25 Jul 2023 07:16 by ADMIN
Created by: Keith
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

We have requirements for 3 HtmlCharts showing related data, all with the same dates on the X-axis. There would be too much data to put all series on a single chart.

Each chart has a Navigator. When we want to view a timeframe different to the default, all charts must have the Navigator adjusted separately. It would be a useful feature if a single navigator could change the display of multiple charts.

Unplanned
Last Updated: 01 Aug 2023 08:52 by ADMIN
Created by: Charlie
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Currently, it's not possible to add Alt text to ImageGalleryItem. By Default it will add "Main Image" as alt.

We can do it in Image Thumbnail but not in the Image Gallery Item, this causes issue with the W3CAG which requires to add alt text to image.

It will be great add on if we can implement this feature to make RadImageGallery accessible.

Completed
Last Updated: 29 Dec 2020 14:08 by ADMIN
Created by: Matthew
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Would be really nice if there was a clearly defined client-side object model for the radGrid. We created a function like the one below by deconstructing the header menu. The jQuery selectors to find the container and affected dropdown lists are really hacky and very brittle.  Reliance on magic strings means that upgrading to future versions is likely to break code like this.

Ideally we should be able to reference (and alter) a client-side filter operators collection like this: grid.headerMenu.filterOperators

function headerMenuShowing(sender, args) {
    var $container = jQuery("div[id^='" + sender.get_id() + "_rghcMenu']");
    var $lists = $container.find("ul.rcbList");
    var gridCol = args.get_gridColumn();
    var dataType = gridCol.get_dataType();
    switch (dataType) {
        case "System.String":
            $lists.find("li:contains('GreaterThan')").hide();
            $lists.find("li:contains('LessThan')").hide();
            $lists.find("li:contains('IsEmpty')").hide();
            $lists.find("li:contains('NotIsEmpty')").hide();
            break;
        case "System.Int32":
        case "System.Int64":
        case "System.Double":
        case "System.Decimal":
        case "System.DateTime":
            $lists.find("li:contains('GreaterThan')").show();
            $lists.find("li:contains('LessThan')").show();
            break;
    }
}