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>
A function that will return a thumbnail of the requested size and the page of a multipage pdf document.
Don
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?
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.
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.
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 '<picture'
Notes:This seems to be an issue with encoding as < 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
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.
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>
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.
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>
			Steps to reproduce: 1. Insert a table 2. Select 2-3 cells 3. Press delete Actual: There is an nbsp between the cells
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