Declined
Last Updated: 11 Oct 2021 09:38 by ADMIN
ADMIN
Created by: Jeff Fritz
Comments: 4
Category: UI for ASP.NET AJAX
Type: Feature Request
4
It would be helpful if the BarCode control could render DataMatrix barcodes
Completed
Last Updated: 29 Jun 2016 12:19 by ADMIN
ADMIN
Created by: Dobromir
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
4

			
Unplanned
Last Updated: 26 Sep 2014 12:19 by Avi
Declined
Last Updated: 28 Mar 2019 10:45 by ADMIN
Created by: Oliver
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
4

			
Unplanned
Last Updated: 11 Jun 2021 08:30 by ADMIN
Created by: Bhrugesh
Comments: 3
Category: UI for ASP.NET AJAX
Type: Feature Request
4

I would like to know if Telerik ASPNET Ajax  control supports securing CSP by adding nonce- or sha256- as mentioned in https://www.sitepoint.com/improving-web-security-with-the-content-security-policy (Refer section - Protecting Inline Styles and Scripts Using a Nonce).
Unplanned
Last Updated: 11 Jun 2021 09:06 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
4
Add ability to define Telerik specific ConfigSectionHandler for their settings like others (e.g.,log4Net) do.

This makes configuring environments much easier. All I need to do is point to *.Dev.config, *.Stage.config and my application is ready for the new environment.


For example, the following settings:

<configuration>
  <configSections>
    <section name="myConfigSection" type="CurrentApp.ConfigurationSectionHandler, Current" />
  </configSections>
  <myConfigSettings configSource="App_Data\Configs\MyConfigSection.config" />
  <appSettings>
    <add key="Environment" value="Local.Local"/>
...
    <add key="Telerik.ScriptManager.TelerikCdn" value="Enabled"/>
    <add key="Telerik.ScriptManager.TelerikCdn.BaseSecureUrl" value="https://yourSite.com/cdn/TelerikScripts" />
    <add key="Telerik.ScriptManager.TelerikCdn.BaseUrl" value="http://yourSite.com/cdn/TelerikScripts" />
    <add key="Telerik.ScriptManager.TelerikCdn.CombinedScript" value="Enabled" />
    <add key="Telerik.Skin" value="Bootstrap" />
    <add key="Telerik.StyleSheetManager.TelerikCdn" value="Enabled"/>
    <add key="Telerik.StyleSheetManager.TelerikCdn.BaseSecureUrl" value="https://yourSite.com/cdn/TelerikSkins" />
    <add key="Telerik.StyleSheetManager.TelerikCdn.BaseUrl" value="http://yourSite.com/cdn/TelerikSkins" />
    <add key="Telerik.StyleSheetManager.TelerikCdn.CombinedResource" value="Disabled" />
    <add key="Telerik.Web.UI.StyleSheetFolders" value="~/Content/; ~/" />
...
  <appSettings>
<configuration>


can be changed to:

<configuration>
  <configSections>
    <section name="telerikSettings" type="Telerik.ConfigurationSectionHandler, Telerik" />
  </configSections>
  <appSettings configSource="App_Data\Configs\Local.config" />
  <telerikSettings> <!-- This section does not exist and the keys are currently inside the local.config file -->
    <add key="Telerik.ScriptManager.TelerikCdn" value="Enabled"/>
    <add key="Telerik.ScriptManager.TelerikCdn.BaseSecureUrl" value="https://yourSite.com/cdn/TelerikScripts" />
    <add key="Telerik.ScriptManager.TelerikCdn.BaseUrl" value="http://yourSite.com/cdn/TelerikScripts" />
    <add key="Telerik.ScriptManager.TelerikCdn.CombinedScript" value="Enabled" />
    <add key="Telerik.Skin" value="Bootstrap" />
    <add key="Telerik.StyleSheetManager.TelerikCdn" value="Enabled"/>
    <add key="Telerik.StyleSheetManager.TelerikCdn.BaseSecureUrl" value="https://yourSite.com/cdn/TelerikSkins" />
    <add key="Telerik.StyleSheetManager.TelerikCdn.BaseUrl" value="http://yourSite.com/cdn/TelerikSkins" />
    <add key="Telerik.StyleSheetManager.TelerikCdn.CombinedResource" value="Disabled" />
    <add key="Telerik.Web.UI.StyleSheetFolders" value="~/Content/; ~/" />
  </telerikSettings>
...
</configuration>


or directly point to external configuration file:

<configuration>
  <configSections>
    <section name="telerikSettings"
             type="Telerik.ConfigurationSectionHandler, Telerik" />
  </configSections>
  <appSettings configSource="App_Data\Configs\Local.config" />
  <telerikSettings configSource="App_Data\Configs\Telerik.config" />
...
</configuration>


Completed
Last Updated: 19 Nov 2014 11:58 by ADMIN
ADMIN
Created by: Rumen
Comments: 5
Category: UI for ASP.NET AJAX
Type: Feature Request
4
Hi guys, 

In Q3 2014, we will introduce a new FormView-like control for ASP.NET AJAX called DataForm. To see what FormView looks like, visit the MSDN article at http://bit.ly/1pZd0RT.

What additional features (not present in FormView) would you like to see in this new control?

Best regards,
Rumen
Unplanned
Last Updated: 18 Jun 2020 16:04 by ADMIN
Created by: SWAT
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
4
It will be nice to have a countDown control with all the client/server events and the suite skins, which will enable the developer to show a visitor with a timer to complete a task (like finsih a purchase with a guranteed price for few minutes) and call a web service when the timer got to zero, and show a message to the client (with integrated Notificatoin object) about the price (changed or staed the same etc.) and let the developer decide if he wants to start the timer again or not.

Thanks,
ilan.
Completed
Last Updated: 28 Sep 2015 07:48 by Niklas Boström
Created by: Jerome
Comments: 3
Category: UI for ASP.NET AJAX
Type: Feature Request
4
The NuGet packages should not install directories into the project. If these directories are not needed when referencing the dlls traditionally, I can't see why they are needed with the Nuget package. Adding nuget references to ASP.Net AJAX in a non-website/application project results in a silly set of directories. Like, if you want to write a plain assembly that simply uses the Telerik controls in a Server Control.

An install.pl file should handle any web.config alteration on install.

The 
Completed
Last Updated: 28 Jun 2016 13:43 by Matt
Take the following code and paste it into the editor in HTML mode...
Copy Code
<html>
    <head>
        <title></title>
        <style type="text/css">
            OL LI {LIST-STYLE-TYPE: upper-roman;}
            OL LI OL LI {LIST-STYLE-TYPE: upper-alpha;}
            OL LI OL LI OL LI {LIST-STYLE-TYPE: decimal;}
        </style>
    </head>
    <body>
        <ol>
            <li>Test...
            <ol>
                <li>add sub bullet after this item...
                </li>
                <li>it most likely got formatted with an "A" and not a "1"<br />
                <ol>
                    <li>It should have been a 1 like this line</li>
                </ol>
                </li>
            </ol>
            </li>
        </ol>
    </body>
</html>
Flip back to design view and it looks great. Then in design view add a sub bullet to bullet A. It will be formatted with an "A" instead of a "1" that the css style defines. But, if you switch back to HTML view and then back to Design view the formatting is correct. Am I doing something wrong or is this a known issue?

Telerik Comment:
The Indent button (which fires a browser command) which is used to insert a sub bullet produced the following non XHTML compliant content:

<OL>
<LI>Test...
<OL>
<LI>add sub bullet after this item... </LI>
<OL>
<LI>new sub bullet</LI></OL>
<LI>it most likely got formatted with an "A" and not a "1"<BR>
<OL>
<LI>It should have been a 1 like this line </LI></OL></LI></OL></LI></OL>

When you switch to HTML mode, the ConvertToXhtml filter of RadEditor corrects the content and it becomes:

<ol>
    <li>Test...
    <ol>
        <li>add sub bullet after this item...
        <ol>
            <li>new sub bullet</li>
        </ol>
        </li>
        <li>it most likely got formatted with an "A" and not a "1"<br />
        <ol>
            <li>It should have been a 1 like this line </li>
        </ol>
        </li>
    </ol>
    </li>
</ol>

For this reason there is a difference how the bullets are rendered.
Declined
Last Updated: 08 Apr 2020 15:23 by ADMIN
Created by: Tom
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
4
As part of the Fall Creators update, Microsoft are releasing SDKs for their Fluent design system for UWP app design.

It would be great if Telerik could expand their skins to include controls designed to mimic the look and feel of the Fluent design including, where possible, Acrylic, Parallax, and Reveal.   I believe that light or dark themes will be standard on the Fluent design, but users will be able to incorporate the their accent colour preference.  So, at the least it would be great to have fluent light, and fluent dark skins with an easy method of similarly changing the accent colour.

Of course, not all of the functionality of UWP will be possible for ASP.NET AJAX, but since Fluent is likely to become the new standard for UWP app design, I believe that users will come to expect similar skins in their web-apps.

See https://docs.microsoft.com/en-us/windows/uwp/layout/design-and-ui-intro for more info.
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: 06 Jul 2016 15:04 by ADMIN
Currently, if a RadWindow is maximized, then minimized, then restored it will get the dimensions it had before maximizing. A window in the OS will maximize if it had been maximized prior to minimizing and the RadWindow should have the same behavior.
Completed
Last Updated: 29 Jun 2016 12:15 by ADMIN
ADMIN
Created by: Georgi Tunev
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
3

			
Won't Fix
Last Updated: 15 Jun 2021 14:38 by ADMIN
Created by: sitefinitysteve
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
3
Certain controls just add bloat to a page.  Like the RadListView is a GREAT control to use inplace of the asp Repeater, but I find I often don't use it (or limit it's use) because it brings down 99.9% useless client scripts.  Most of the time, especially in Sitefinity its a server-side render-only control.  Just used to show data...we don't need ANY client manipulation.
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: 20 Oct 2015 21:33 by ADMIN
ADMIN
Created by: Pavlina
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
3