The issue is reproducible with RadAlert, RadConfirm and RadPrompt dialogs without setting Behavior Move and DestroyOnClose="true"
Workaround: Toggle the fullscreen mode of the editor by adding the "editor.toggleScreenMode()" method two times at the end of the following callback, located in this JavaScript file ("C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\wpresources\RadEditorSharePoint\7.6.1.0__1f131a624888eeed\Resources\SPEditorTools.js") configObj.ReturnCallback = function (url, text, config, newAsset) { elemLink.href = assetPickerValue.value; document.body.removeChild(assetPickerValue); if (inserting && url) { var images = elemLink.getElementsByTagName("img"); var textContent = elemLink.innerText != null ? elemLink.innerText : elemLink.textContent; if (textContent === "" && (!images || !images.length)) { if (linkContent.match(/</)) { Telerik.Web.UI.Editor.Utils.setElementInnerHtml(elemLink, linkContent); } else { var textNode = elemLink.ownerDocument.createTextNode(linkContent || text); elemLink.appendChild(textNode); } } if (editorSelection) editorSelection.selectRange(currentRange); editor.pasteHyperLink(elemLink, "InsertLink"); //WORKAROUND: if (editor.isFullScreen() == true) { editor.toggleScreenMode(); editor.toggleScreenMode(); } } };
Possible BreadCrumb integration with RadMenu and Orgchart: http://demos.telerik.com/aspnet-ajax/menu/examples/programming/showpath/defaultcs.aspx http://demos.telerik.com/aspnet-ajax/orgchart/examples/applicationscenarios/drilldownwithbreadcrumb/defaultcs.aspx
When localizing RadSpell to e.g., German, buttons' text is longer than expected and overflows outside the button. To fix the issue you can use an external dialog css file like in this code snippet: ASP.NET -------------------------------------------------------------------------------------- <asp:TextBox ID="textBox2" runat="server" width="100%" Height="100px" TextMode="MultiLine">Dies ist eine Textbox mit ainigen absichtlichen fehlern.</asp:TextBox> <br /> <telerik:RadSpell ID="spell2" runat="server" ControlToCheck="textBox2" Language="de-DE" DictionaryLanguage="de-DE" SpellCheckProvider="EditDistanceProvider" Skin="Silk" DialogsCssFile="spell-dialog-css.css"></telerik:RadSpell> CSS -------------------------------------------------------------------------------------- button { overflow: hidden; white-space: nowrap; overflow: hidden; -ms-text-overflow: ellipsis; -o-text-overflow: ellipsis; text-overflow: ellipsis; }
When the Zip Skin archive is modified and uploaded to the SkinsAssemblyBuilder, the page throws a server error.
A Sys.WebForms.PageRequestManagerParserErrorException error is thrown sporadically on some demos in the QSF. Steps to reproduce: (The error is not reproducible every time on all machines so you can find attached a fiddler cap log from the reproduction): 1. Open http://demos.telerik.com/aspnet-ajax/imageeditor/examples/overview/defaultcs.aspx 2. Try to open the Crop dialog (in IE11) Result: A script exception is thrown SCRIPT5022: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled. Details: Error parsing near 'HwdlHwoCAh8LaB8MaGRk'. File: Telerik.Web.UI.WebResource.axd, Line: 15, Column: 16485
The long code lines in the QSF code viewer are very hard to read as the only way to get the horizontal scroll-bar is to reach the bottom of the page.
Dear Team, I using Telerik for SharePoint on a page layout I am using the tag below <telerik:RadHtmlField id="EnglishContent" FieldName="English Content" runat="server"> </telerik:RadHtmlField> My customer requires to have a default text value inside this editor every time the user creates new page from the page layout. When I am trying to use rhe <content> tag I got an error that the tag content is not recognized as a Rad HTML Field tag.
Programmatic configuration of the data binding of markers is unavailable from the code behind. For example: RadMap1.DataBindings.MarkerBinding.DataShapeField = "Shape"; RadMap1.DataBindings.MarkerBinding.DataTitleField = "City"; RadMap1.DataBindings.MarkerBinding.DataLocationLatitudeField = "Latitude"; RadMap1.DataBindings.MarkerBinding.DataLocationLongitudeField = "Longitude";
Accepting tracked deleted block element will delete the following block element
Uploading a file when ExplorerMode is set to FileTree causes a JavaScript error in FileExplorer when the AsyncUpload is enabled.
Create a tool that allows a powerpoint to be displayed in a web page. Extra bonus if it's able to include sound. It should have the usual controls at the bottom - forward, back, beginning, end. The powerpoint page would change based on user clicks.