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.
Completed
Last Updated: 09 Apr 2019 13:40 by ADMIN
Created by: Anne
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Completed
Last Updated: 02 Apr 2019 14:15 by ADMIN
Created by: Scott
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Hi,

 

Trying to use a web testing tool (Selenium) and using xpath is not always working.  I was wondering if it would be possible to always add an ID property to controls, especially in drop downs etc. so that it can clicked properly.

Declined
Last Updated: 02 Apr 2019 08:32 by ADMIN
ADMIN
Created by: Rumen
Comments: 3
Category: UI for ASP.NET AJAX
Type: Feature Request
6

I would like to suggest a new product for Telerik: a html5 document editor (so not a html editor) which can edit docx documents. Recently I stumbled on the new html5 document editor by Teamlab (see http://html5.teamlab.com/), which will get its first major release this summer. I think such a component would also be an excellent addition to the Telerik product line as well (and probably a nice competitive advantage), since you already have some experience with the SL RichTextBox. It's probably not an easy project, but in the many years I've been a Telerik customer, I've seen a number of amazing components been created, so please forgive me for the high expectations. Just to mention (and perhaps as extra fuel for your discussion with management ;-)), I would personally favour a new HTML5 based editor. The current ASP.NET AJAX RadEditor is great in what it does -> HTML editing. Docx editing is very different in my view, both feature-wise as in regards to user-experience. As you can see from the Teamlab editor, it for example includes pagination and printing. I think it uses a different method for rendering too, e.g. canvas/SVG for pixel-perfect rendering. Very important for users to have what they type and see displayed on the screen be exactly the same as what they print. Basically I'm suggesting a MS Word Light by Telerik, something I believe your current SL RichTextBox is as well.
			
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

			
Completed
Last Updated: 27 Mar 2019 21:46 by ADMIN
After the alert was confirmed, a Post Back is expected which does not happen due to a JavaScript exception: Cannot read property 'toString' of null
Completed
Last Updated: 27 Mar 2019 18:12 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Steps to Reproduce:
1) bold a non tracked word
2) Append an "s" (or other letter) to the previous non tracked word
3) delete the space between the previous word and the bolded word

Actual: the tracking will delete the first letter of the bolded word

Expected: the space should be deleted

Workaround:
<telerik:RadEditor ID="RadEditor1" runat="server" EnableTrackChanges="true">
	<Content>
		<p>some plain text</p>
	</Content>
</telerik:RadEditor>
<script>
	(function ($, $E, undefined) {
		var utils = $E.Utils;
		utils.isInlineSpace = utils.isInlineSpace || function (node) {
			return utils.isTextNodeEmpty(node) && node.previousSibling && node.nextSibling &&
				!utils.isBlockElement(node.previousSibling) && !utils.isBlockElement(node.nextSibling);
		};
		var isSignificantTextNode = function (node) {
			return utils.isTextNode(node) && (!utils.isTextNodeEmpty(node) || utils.isInlineSpace(node));
		};
		var prototype = $E.PlainTextSelector.prototype;
		$E.PlainTextSelector = function (toLeft, topNode) {
			this.toLeft = toLeft;
			var condition = toLeft ?
								function (node, position) { return isSignificantTextNode(node) && (position > 0 && position <= node.nodeValue.length); } :
								function (node, position) { return isSignificantTextNode(node) && (position >= 0 && position < node.nodeValue.length); };

			this.traverser = new $E.DomTreeTraverser(condition, topNode);
		};
		$E.PlainTextSelector.prototype = prototype;
	})($telerik.$, Telerik.Web.UI.Editor);
</script>
Completed
Last Updated: 27 Mar 2019 17:54 by ADMIN
ADMIN
Created by: Nikolay
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1
Steps to reproduce:
1. Insert a table
2. Select 2-3 cells
3. Press delete

Actual: There is an nbsp between the cells
Declined
Last Updated: 27 Mar 2019 14:12 by ADMIN
ADMIN
Created by: Rumen
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1
We are current experiencing a whitescreen with Telerik UI Controls for asp.net Ajax in chrome browser when the zoom level is less than 100. We observed a white screen instead of the rendered controls within main content area of our masterpage. The masterpage has several sections, header, left, mainconten, right and footer sections all divided by RadSplitter/RadPane controls. I attached a sample solution and screenshots of the observed issue.

Step to Reproduce:

- Open solution in Visual Studio

- Run choosing Chrome Browser

- Resize browser to 90%

- Reload the page

Expected

Page is rendered

Observed

White screen in the main content area

See attached screenshots
Unplanned
Last Updated: 21 Mar 2019 16:14 by ADMIN
Created by: Suwandi
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
i have a feature request

- Image map input

Based mapify,js sample below :

http://etiennemartin.ca/mapify/

I have use it before, storing areas and values in the databases, but the output is hyperlink.

I want it as asp.net input control that have selectedvalue property, i want server side value as the result. Maybe i can borrow hiddenfield or something. But it's wasting time.

Please, add image control input into your collection. It's very usefull i guess.
Completed
Last Updated: 20 Mar 2019 15:28 by ADMIN
Created by: MailUp Dev
Comments: 5
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Using Firefox 64.0,  selecting an image doesn't appear the resizing handles which are located on each corner of the object
Completed
Last Updated: 20 Mar 2019 11:13 by ADMIN
ADMIN
Created by: Petar
Comments: 3
Category: UI for ASP.NET AJAX
Type: Bug Report
6

			
Won't Fix
Last Updated: 19 Mar 2019 14:26 by ADMIN
Load in IE this demo: http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

Enter in HTML mode - <p><a href="stm:b4f0c9ac-9a08-4c9f-8caf-39ccd4a83fc9" class="stm" contenteditable="false">Statement 111</a></p>

Switch to Design mode

Search for Statement with the Find and Replace dialog

The dialog won't be able to locate and highlight the link
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.
=====================
Completed
Last Updated: 27 Feb 2019 08:52 by Marin Bratanov