Declined
Last Updated: 16 Mar 2019 13:39 by ADMIN
Created by: Massimiliano
Comments: 50
Category: UI for ASP.NET AJAX
Type: Feature Request
169
Bootstrap popularity is growing each day, not just as a flexible grid system, but for it's skinning capabilieties as well. There are dozens of sites with both free and priced Bootstrap skins..
It would be nice to have a skin for rad controls wich maps straight to default Bootstrap classes.
So that just using the bootstrap skins (+ base Telerik controls skin) will also theme the rad controls and changing the Bootstrap themes of course changes the controls theming.

I guess that option to have a "straight" mapping of the rad controls to the bootstrap default classes so to be able to take advantage of bootstrap themes would be a great addition.

=====================
Updated by Telerik admin on 10.4.2017:
The status of this highly demanded feature has been updated to Declined, but you can find details what has been done during the years for satisfying this request:

Since the markup of the controls does not offer direct mapping for the Bootstrap v3 and v4 themes and classes, we introduced a new Bootstrap skin for the suite based on Bootstrap 3 component colors, metrics and appearance. This skin can be easily customized in the Theme Builder (http://themebuilder.telerik.com/aspnet-ajax) in terms of colors which allows you to create Bootstrap like appearance for Telerik Ajax components which matches the colors of your Bootstrap apps and components.

If you have any other requests for Bootstrap, don't hesitate to share them with us.
=====================
Declined
Last Updated: 04 Oct 2017 11:13 by ADMIN
ADMIN
Created by: Peter Filipov
Comments: 5
Category: ScriptManager
Type: Feature Request
36
The script tags should contain "defer" attribute.

Resolution: You can set the LoadScriptsBeforeUI property of the script manager to false so that the scripts will render as late in the page as possible (just above the inline <script> that MS AJAX generates for the $create() statements). This will provide benefit nearly identical to the defer feature, but it does not risk breaking existing functionality. More information on the property:  https://msdn.microsoft.com/en-us/library/system.web.ui.scriptmanager.loadscriptsbeforeui(v=vs.110).aspx
Declined
Last Updated: 24 Oct 2017 12:20 by Adam
Created by: Eli
Comments: 24
Category: PivotGrid
Type: Feature Request
31
Some of the most powerful features of the new RadPivotGrid are based around aggregates.  It would be great if you could simply sort by any aggregate fields set up, including Grand Totals.  I have not seen any documentation on doing this as it stands.
Declined
Last Updated: 14 Jul 2014 15:07 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 2
Category: HtmlChart
Type: Feature Request
28
Rejected with the following reason:
The purpose of the RadHtmlChart is to visualize data and not to manipulate it. You can manually group a data source, so that its structure is suitable for a chat data-binding. Such an example is illustrated in this CL - http://www.telerik.com/support/code-library/group-radhtmlchart-data-source
Declined
Last Updated: 24 Oct 2017 09:57 by ADMIN
Created by: Imported User
Comments: 14
Category: UI for ASP.NET AJAX
Type: Feature Request
23
I think you may consider the following similar type of control(s) in future release.  I think the following is a good fit for use between a BI solution and standard reports.  It gives regular users some flexibilities to generate ad-hoc queries within an application.

http://demo.easyquerybuilder.com/asp-net-ajax/
Declined
Last Updated: 09 Jul 2018 23:51 by Mazdak
ADMIN
Created by: Danail Vasilev
Comments: 10
Category: HtmlChart
Type: Feature Request
22
Currently the RadHtmlChart can be bound to a single data source. Add the ability to bind each series to a single data source.
Declined
Last Updated: 16 Jul 2019 12:46 by ADMIN
ADMIN
Created by: Danail Vasilev
Comments: 12
Category: HtmlChart
Type: Feature Request
21
Similar to the RadChart's http://demos.telerik.com/aspnet-ajax/chart/examples/newfeatures/intelligentlabels/defaultcs.aspx For the time being you can implement a custom logic for offsetting y point positions of labels. For example offset every 2nd item label position:
       <telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
		<script>
			function pageLoad() {
				offsetItemLabels();
			}
			function offsetItemLabels() {
				//Find all text elements on the page
				var textElements = document.getElementsByTagName("text");
				var numSeriesItemLabels = 0;
				//Iterate through the text elements
				for (var i = 0; i < textElements.length; i++) {
					var currTextEl = textElements[i];
					//Set the desired string/symbol that represents the series labels
					var SeriesLabelSymbol = "@SL";
					if (currTextEl.textContent.indexOf(SeriesLabelSymbol) != -1) {
						numSeriesItemLabels++;
						var currText = currTextEl.textContent.split(SeriesLabelSymbol);
						//Offset y point for every 2nd item label
						currTextEl.textContent = currText[1];
						if ((numSeriesItemLabels) % 2 == 0) {
							currTextEl.attributes.y.textContent = currTextEl.attributes.y.textContent * 1 + 35;
						}
					}
				}
			}
		</script>
        <telerik:RadHtmlChart ID="RadHtmlChart1" runat="server" Width="600px" Height="400px">
            <ChartTitle Text="Chart title">
            </ChartTitle>
            <PlotArea>
                <Series>
                    <telerik:LineSeries Name="Series 1">
                        <SeriesItems>
                            <telerik:CategorySeriesItem Y="18" />
                            <telerik:CategorySeriesItem Y="18" />
                            <telerik:CategorySeriesItem Y="18" />
                            <telerik:CategorySeriesItem Y="18" />
                        </SeriesItems>
                        <LabelsAppearance>
                            <ClientTemplate>
@SLCategory is #=category# Value is: #=value#
                            </ClientTemplate>
                        </LabelsAppearance>
                    </telerik:LineSeries>
                </Series>
                <XAxis>
                    <Items>
                        <telerik:AxisItem LabelText="item 1" />
                        <telerik:AxisItem LabelText="item 2" />
                        <telerik:AxisItem LabelText="item 3" />
                        <telerik:AxisItem LabelText="item 4" />
                    </Items>
                </XAxis>
            </PlotArea>
        </telerik:RadHtmlChart>
Declined
Last Updated: 21 Aug 2014 09:54 by Mario
ADMIN
Created by: Lini
Comments: 4
Category: UI for ASP.NET AJAX
Type: Feature Request
20

			
Declined
Last Updated: 17 Feb 2015 11:42 by ADMIN
ADMIN
Created by: Nikolay Rusev
Comments: 2
Category: InputManager
Type: Feature Request
18

			
Declined
Last Updated: 19 Jul 2017 14:04 by Manish
Improve RadGrid's grouping, to get more items from the next page, when group in the current gets collapsed.
Declined
Last Updated: 11 Oct 2017 08:31 by ADMIN
Created by: sitefinitysteve
Comments: 4
Category: UI for ASP.NET AJAX
Type: Feature Request
15
You're working on a cleaner css3 approach, however sprites are still resource being downloaded...it's be great if the controls we're using on our page had iconography consistent with the site theme *automatically* instead of needing to use a custom skin.

Can you please implement a clean fontawesome enabled skin?  So instead of referencing a sprite and background position you instead would set :before or :after and content="\f002".

This makes the resulting resources much lighter...as there's no sprite (retina ready by default)

...it'd be up to us to have fontawesome loaded on our page.

(Teampulse uses fontawesome, and they have at least 1 radgrid)

http://fortawesome.github.io/Font-Awesome/icons/

Steve
Declined
Last Updated: 16 Dec 2018 17:29 by ADMIN
ADMIN
Created by: Vasil
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
14
<telerik:RadMaskedTextBox ID="RadMaskedTextBox2" Runat="server" Mask="<0..255>.<0..255>.<0..255>.<0..255>" ZeroPadNumericRanges="false" PromptChar="">  
</telerik:RadMaskedTextBox> 

Should render 192.168.1.1 instead of 192.168.__1.__1 
Declined
Last Updated: 14 Oct 2014 12:43 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 10
Category: Calendar
Type: Feature Request
13
Support for Persian calendar.
Declined
Last Updated: 11 Dec 2014 09:29 by ADMIN
ADMIN
Created by: Georgi Tunev
Comments: 0
Category: Window
Type: Feature Request
13
The desired effect can be achieved easily with CSS and this approach will even allow for finer tuning of the desired effect.

The RadWindpw's ContentTemplate is a simple div element that has dimensions set in pixels by the RadWindow scripts, so you can control the way its contents flow just like any other generic div element on your page. Below follows an example.

In case an external page is loaded in the RadWindow (e.g., via the NavigateUrl property), it will be loaded with an iframe that has its width and height set to 100% of the RadWIndow content area. Thus, it is up to the content page to control its scrolling.

<%--A sample RadWindow declaration you can use for quick testing--%>
<telerik:RadWindow ID="RadWindow1" runat="server" VisibleOnPageLoad="true">
	<ContentTemplate>
		<div class="desiredOverflow">
			Add your content here
			<div style="height: 1000px; width: 1000px; background-color: yellow;">
				some dummy content so you can test out the overflow CSS rules behavior
			</div>
		</div>
	</ContentTemplate>
</telerik:RadWindow>


/* some sample CSS that you can use to control the scrolling behavior of your content */
.desiredOverflow
{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: scroll; /* set the desired value here */
	/* you can also use the other overflow rules for fine control */
	overflow-x: hidden; /* set the desired value here */
	overflow-y: scroll; /* set the desired value here */
}
Declined
Last Updated: 11 Oct 2017 08:36 by ADMIN
Some org charts use a "side" connect to administrative assistants, where instead of connecting on top, they connect on the side to visualize the difference between them and other reports. Perhaps a "where to connect" property may fix this (top by default, then on the left or on the right).
Declined
Last Updated: 16 Dec 2018 16:59 by ADMIN
ADMIN
Created by: Vessy
Comments: 6
Category: UI for ASP.NET AJAX
Type: Feature Request
12
I would like to suggest a new control build from the same paradigm as the RadSocialShare.
The control should enable a website to provide an easy way to setup shared sign up / login from different providers on your website.

E.g. an easy way to let users sign up using their facebook account or Google account etc.
Declined
Last Updated: 11 Oct 2017 08:41 by ADMIN
Created by: Henrik
Comments: 4
Category: UI for ASP.NET AJAX
Type: Feature Request
12
The ASP.NET community really seems to be missing a proper property grid.
The only example I could dig out was the outdated implementation on codeplex:
http://propertygrid.codeplex.com/

I'd like to see one such implementation from Telerik.
Declined
Last Updated: 16 Apr 2020 08:30 by ADMIN
Functionality requested by a prestigious customer (AIRBUS).
Declined
Last Updated: 16 Dec 2018 17:43 by ADMIN
Created by: SANJAY
Comments: 6
Category: ClientDataSource
Type: Feature Request
11
This was a thread started by Alex Fuernsinn. I would also strongly suggest that this should be implemented


Regards
Declined
Last Updated: 21 Jun 2022 09:22 by ADMIN
1 2 3 4 5 6