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
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