Completed
Last Updated: 07 Jun 2016 13:15 by ADMIN
Created by: R Austin
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
when trying to use the Visual Style Builder with IE 11, I get error

"System requirements not met

The Visual Style Builder requires a modern browser.

You can either upgrade Internet Explorer, or try Firefox for better experience on javascript-rich applications, such as this."


Completed
Last Updated: 06 Jul 2017 18:24 by FRANK
ADMIN
Created by: Kostadin
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 01 Jun 2021 13:32 by ADMIN
Release Q2 2015
ADMIN
Created by: Kostadin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
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

			
Completed
Last Updated: 09 Mar 2015 07:03 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 17 Jun 2015 08:19 by ADMIN
If a long paragraph is copied into the editor, <br> tags appear in thea content without being added at first place. 

For the time being you can resolve this by adding the following script below the editor declaration:

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

<script type="text/javascript">
    var oldStripFormatting = Telerik.Web.UI.Editor.Utils.stripFormatting;

    Telerik.Web.UI.Editor.Utils.stripFormatting = function (textHtml, clearValue) {
        if (clearValue === "ALL_NO_BRAKES") {
            textHtml = textHtml.replace(/\n/g, "");
            textHtml = textHtml.replace(/<\/p>/g, "<br/>");
        }

        textHtml = oldStripFormatting.call(this, textHtml, clearValue);
        return textHtml;
    }
</script>
Completed
Last Updated: 20 Jun 2017 14:51 by ADMIN
ADMIN
Created by: Marin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 18 Jun 2015 19:55 by Clyde
Under IE, when two tables are placed next to each other, the Table Properties may cause the one to appear nested inside.


Currently, this can be workarounded only by assuring that there is some element between them - <br>, <p>, <div>, <span> etc.
Completed
Last Updated: 01 Jun 2021 12:28 by ADMIN
Completed
Last Updated: 09 May 2015 22:39 by Sascha
ADMIN
Created by: Marin Bratanov
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
2
Here is the missing resource name: pTelerik.Web.UI.Skins|Telerik.Web.UI.Skins.Web20.Common.radGradientListSprite.png
You can see if this is your case as well by decrypting the WebResource request that fails as shown here: http://blogs.telerik.com/aspnet-ajax/posts/07-03-27/debugging-asp-net-2-0-web-resources-decrypting-the-url-and-getting-the-resource-name.aspx
Completed
Last Updated: 21 Apr 2022 08:38 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2
At present, when a Telerik product is installed via an automated installer (WebInstaller or a downloaded MSI package), a shortcut to it is added on the desktop.

This feature should be optional, e.g., via a checkbox during the installation wizard.
Completed
Last Updated: 11 Aug 2016 13:47 by A
Completed
Last Updated: 27 Jan 2015 15:26 by ADMIN
ADMIN
Created by: Viktor Tachev
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0
When RenderMode is set to LightWeight and ToolbarMode is RibbonBar, a JavaScript error is thrown.
Duplicated
Last Updated: 15 Jun 2021 07:04 by ADMIN
Created by: Curtis
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2
I don't know what you call this button but it is a crossover between a drop down list/mega menu and a button.

Very simple example:
Google's "More" button across the top next to News/Videos/Maps and then there is the "More" button with the other options. 
https://www.google.com/#q=dog

Next example:
Your site! The skin selecting drop down:
http://demos.telerik.com/aspnet-ajax/grid/examples/overview/defaultcs.aspx

The option for a full fluid width like this would be nice along with the possibility of a fixed or fitted width. I also really like the animated arrow up/down.

But the mega menu example is Amazon:
http://www.amazon.com/

Their buttons/drop downs in the top right for "Your Account", "Try Prime", "Cart", and "Wish List".

These are beautiful and would be great functionality. It would also be ideal if the button/link itself that triggers the drop down doesn't have styles like the skins so they can easily be integrated into a website's existing navigational items and site design.

Completed
Last Updated: 14 Apr 2020 15:09 by ADMIN
Created by: Curtis
Comments: 3
Category: UI for ASP.NET AJAX
Type: Feature Request
5
Please please please make the Material/Uniform/Bootstrap skins you've made for KendoUI/MVC for ASP.NET AJAX. These skins are so much more modern and clean than the ones available for ASP.NET, which look like they were designed 10 years ago.

The Metro and MetroTouch skins were a step forward for the ASP.NET AJAX library but the Metro is really small and the MetroTouch is really big. Somehow ASP.NET AJAX got the bad Metro skins and the Metro skin for KendoUI/MVC is the perfect size and beautiful. It doesn't need a "Touch" version because the one skin fits both bills.

Just compare the looks of the buttons between the ASP.NET AJAX Metro version and the KendoUI/MVC Metro version:

http://demos.telerik.com/aspnet-ajax/button/examples/overview/defaultcs.aspx?skin=Metro
http://demos.telerik.com/aspnet-ajax/button/examples/overview/defaultcs.aspx?skin=MetroTouch

http://demos.telerik.com/kendo-ui/button/index

Just like your own website is now flat and clean with nice buttons.

Please provide some new modern skins for ASP.NET AJAX as these controls are looking more outdated than ever, which bothers me because you continue to innovate on their functionality.

Make them look as great as they function!

Thanks.
Declined
Last Updated: 10 Aug 2015 07:17 by ADMIN
GridDragDropColumn cannot be dragged when added to a dynamically created Grid. The issue can be reproduced with the following code:

    override protected void OnInit(EventArgs e)
    {
        RadGrid gr = new RadGrid();
        gr.ID = "testGrid";
        gr.AutoGenerateColumns = false;
        gr.NeedDataSource += gr_NeedDataSource;
        GridDragDropColumn columnDrag = new Telerik.Web.UI.GridDragDropColumn();
        columnDrag.HeaderStyle.Width = Unit.Pixel(40);
        columnDrag.HeaderText = "Drag";
        fileExplorer.Grid.Columns.Add(columnDrag);
        //gr.MasterTableView.Columns.Add(columnDrag);
        
        gr.ClientSettings.AllowRowsDragDrop = true;
        gr.ClientSettings.Selecting.AllowRowSelect = true;
        Page.Controls.Add(gr);
    }
Completed
Last Updated: 16 Jul 2015 07:57 by ADMIN
ADMIN
Created by: Pavlina
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0