Completed
Last Updated: 02 Oct 2019 14:33 by ADMIN
 https://www.screencast.com/t/UgqUZbqenpj5
Declined
Last Updated: 04 Sep 2019 09:02 by ADMIN
ADMIN
Created by: Chavdar Dimitrov
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
6

			
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.

Completed
Last Updated: 02 Sep 2019 14:52 by ADMIN
Created by: Patrick
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0
When we create a link to an external web site such as www.cnn.com using the RadEditor (6.3.0.0) on our SP2010 farm we are getting an error that says this:
"cannot find this location in the current site location"
"the URL may refer to an external web site for to a location in the site collection that does not exist or you do not have the right to access"

When I bring up a browser on the SharePoint server themselves I can access those sites.

Declined
Last Updated: 02 Sep 2019 14:38 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 3
Category: UI for ASP.NET AJAX
Type: Feature Request
1

			
Completed
Last Updated: 02 Sep 2019 14:33 by ADMIN
Please add an ability to move text in different styles, something like HTML MARQUEE.


For example:

http://www.htmlcodetutorial.com/_MARQUEE_BEHAVIOR.html

http://www.plus2net.com/html_tutorial/html_marquee_behvr.php
Completed
Last Updated: 27 Aug 2019 10:43 by ADMIN
ADMIN
Created by: Dimitar
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 19 Aug 2019 12:26 by ADMIN
Completed
Last Updated: 14 Aug 2019 12:34 by ADMIN
Created by: Chris Dalessandri
Comments: 3
Category: UI for ASP.NET AJAX
Type: Bug Report
0

Reproduction steps:

Go to the Telerik demo at https://demos.telerik.com/aspnet-ajax/textbox/overview/defaultcs.aspx
In the Comment box, type "one two".  Do not let the textbox lose focus.
Highlight "two" and start to drag it to move it before "one". The other text ("one") will disappear, and is gone forever, as far as I can tell.

It can be also reproduced with this configuration:

<telerik:RadTextBox RenderMode="Lightweight" runat="server" ID="RadTextBox3" Width="200px" EmptyMessage="Enter comment" TextMode="MultiLine" Height="100px" Resize="None"></telerik:RadTextBox>

Declined
Last Updated: 06 Aug 2019 09:09 by ADMIN
Created by: Donald Norris
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0

A function that will return a thumbnail of the requested size and the page of a multipage pdf document.

 

Don

Completed
Last Updated: 29 Jul 2019 07:48 by ADMIN

We are evaluating whether to use Telerik to redesign a legacy web app written using an old version of Telerik.

After downloading Trial version on fresh install of windows, I can't add ajax control to form. `I am using visual studio 2019, this is the first version of Telerik installed on this computer.  I just get the "Error Creating Control RadScriptManager1. They do show up in the toolbox so this surprises me.

Very latest version.

7/28/2019

Could it be a license issue?

Completed
Last Updated: 26 Jul 2019 08:29 by ADMIN
You can hide certain characters using "*" in the DisplayMask. For example: 
Mask="####" 
DisplayMask = "**##"

If the value is "1234", after blur it will look like "**34"
The same approach can be used for all mask parts. The only requirement is DisplayMask to be longer or equal to the Mask. For example:
Mask = "<1..999>someLiterals####SomeMoreLiterals<3..123>"
DisplayMask = "***someLiterals**#*Some*******s<1..99>*"
If in the above example the DisplayMask is shorter or does not contains enough asterisks to match the editable parts, the visible value on blur can be wrong.
Completed
Last Updated: 04 Jul 2019 07:47 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0
When trying to load a light-weight skin from external assembly (other than Telerik.Web.UI.Skins), the path to the files is not resolved correctly, hence no resource is loaded.
Completed
Last Updated: 28 Jun 2019 11:02 by ADMIN
Completed
Last Updated: 16 May 2019 15:54 by ADMIN
Created by: Sergey
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
3

Hello,

There seems to be a bug with the RadEditor "Find and Replace" feature. I have recorded a screencast available here documenting the issue and will also provide below the information written: https://www.screencast.com/t/MXFawxIPp

Reproduction Steps:

Expected: '<img' is replaced with '<picture'

Actual:'<img' is replaced with '&lt;picture'

Notes:This seems to be an issue with encoding as &lt; is a less than tag. As you can see in the video, I do not think there is a way to escape the character to allow it to be replaced correctly. If you have additional questions, please ask.

 

Best Regards

Completed
Last Updated: 11 Apr 2019 08:13 by ADMIN

I have a problem with the deletecommand of the asp.net radgrid control (Telerik.Web.UI 2019.1.215.40).

This happens only in the latest release of Chrome.

I hope you can replicate this issue and eventually fix it. 

Completed
Last Updated: 10 Apr 2019 15:41 by ADMIN

This can be reproduced with the following sample:

<telerik:RadWindow runat="server" ID="RadWindowWithEditor" Height="1000px" OnClientShow="fixEditor"
 
    OpenerElementID="Button5">
    <ContentTemplate>
        <telerik:RadEditor RenderMode="Lightweight" runat="server" ID="RadEditor1" Width="700px" Height="700px">
            <Content>
Lorem ipsum dolor sit amet
            </Content>
        </telerik:RadEditor>
    </ContentTemplate>
</telerik:RadWindow>
<asp:Button ID="Button5" Text="open the RadWindow" runat="server" />
<script type="text/javascript">
    function fixEditor() {
        setTimeout(function () {
            $find("<%=RadEditor1.ClientID %>").onParentNodeChanged();
        }, 100);
    }
</script>

 

Completed
Last Updated: 10 Apr 2019 15:28 by ADMIN
Bug introduced in build 2019.1.115+ causes 3 extra <p>&nbsp;</p> when user presses Enter key in FireFox.  Happens when Editor is in a Wizard with more than one step.  Bug does not occur in builds prior to 2019.1.115.

Try this to reproduce:

 <telerik:RadWizard runat="server" ID="rwMain" BorderStyle="Solid" BorderColor="LightGray" BorderWidth="1px" RenderMode="Lightweight" DisplayNavigationButtons="True">
        <WizardSteps>
            <telerik:RadWizardStep ID="RadWizardStep2" Title="Content Template" StepType="Step">
                <h1>hello!</h1>
            </telerik:RadWizardStep>
            <telerik:RadWizardStep ID="RadWizardStep3" Title="Content Editor" StepType="Step">
                <telerik:RadEditor ID="ContentEditor" runat="server" RenderMode="Lightweight"></telerik:RadEditor>
            </telerik:RadWizardStep>
        </WizardSteps>
    </telerik:RadWizard>
Completed
Last Updated: 10 Apr 2019 15:26 by ADMIN
When the ribbon bar is set to RibbonBarFloating, RibbonBarPageTop or RibbonBarShowOnFocus the menus cut off so you can't access menu items that would be displayed below bounds of the ribbon bar.

You can see this happening at:

https://demos.telerik.com/aspnet-ajax/controls/examples/integration/ribbonbarandeditor/defaultcs.aspx?product=editor

I have also supplied a snip of the issue.