As a workaround you can either use Lightweight render mode or Server group load mode.
RadHtmlChart does not cache the correct size when placed inside initially hidden iframe.
Workaround:
function redrawChart() {
kendo.drawing.util.TextMetrics.current._cache = new kendo.drawing.util.LRUCache(1000);
$find("<%=RadHtmlChart1.ClientID%>").get_kendoWidget().redraw();
}
Please update stylebuilder to match up with latest controls.. there is no skin generated yet for tilelist and lightbox. also last update Q3 2013 doesnt include default skin files in telerik's folder. where i could download base skin files of telerik?
when trying to use the Visual Style Builder with IE 11, I get error "System requirements not met The Visual Style Builder requires a modern browser. You can either upgrade Internet Explorer, or try Firefox for better experience on javascript-rich applications, such as this."
Visual style builder is not working properly in google chrome, doesnt reflect the changes that I m doing to create the style.
To cater for SharePoint Lists (or Excel/SQl Sources) with large columns can the Freeze Columns property from the underlying RadGrid be exposed to the SpRadGrid
When RadEditor or SPRadEditor is placed in a SharePoint web part and export to RTF is initiated, the following exception is thrown: Metadata file 'Telerik.Web.UI.dll' could not be found
when using spradgrid designer in SharePoint to retrieve data from sql tables the sql tables are ordered in a non sequence. this is really frustrating if you have a lot of tables. It would be great if you can order them by the table name. Thanks
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.
The current behavior of the table insertion works by adding the cursor outside the table. This behavior causes inconsistent issues (e.g. In IE the cursor appears in the last TD, but the typed text is after the table) and faulty user experience.
In desktop rich text editors (e.g. MS Word), when a table is inserted the first table cell is selected and this is the users' expected behavior.
You can test the modified command by following this example:
<telerik:RadEditor runat="server" ID="RadEditor1" OnClientPasteHtml="OnClientPasteHtml">
</telerik:RadEditor>
<script type="text/javascript">
var identifierID = "RadEditor_AfterTable";
function OnClientPasteHtml(editor, args) {
var commandName = args.get_commandName();
if (commandName === "InsertTable" || commandName === "TableWizard" ) {
var currValue = args.get_value();
currValue = currValue.replace(/<\/table>/gi, "</table><div id=" + identifierID + ">​</div>");
//currValue = currValue + "<div id=" + identifierID + ">​</div>";
args.set_value(currValue);
setTimeout(function () {
selectFirstTD(editor)
}, 0);
}
}
function selectFirstTD(editor) {
var $ = $telerik.$;
var contBody = editor.get_contentArea();
var identifier = $(contBody).find("#" + identifierID);
var table = identifier.prev();
var elmToSelect = table.find("th")[0] || table.find("td")[0];
if (elmToSelect.childNodes && !$telerik.isIE) {
elmToSelect = elmToSelect.childNodes[0].nodeName === "#text" && elmToSelect.childNodes[0];
}
var hasNextElement = identifier.next()[0];
while (hasNextElement && $(hasNextElement).is("style")) {
hasNextElement = $(hasNextElement).next()[0];
}
editor.selectElement(elmToSelect);
if (!hasNextElement) {
table.after("<br/>");
}
identifier.remove();
}
</script>
Due to accessibility matters this shortcut currently focuses the last tool in the toolbar.
It would be great if developers could be available to modify the default behavior and attach a special command that behaves more like the MS Word's Shift+Tab command. The following behavior is the one experienced in desktop rich text editors:
1. In text - The command adds a simple TAB (e.g. four white spaces).
2. In list - The selected list item is being outdented.
3. In table - The cursor moves to the previous cell.
A customization that provides such behavior can be easily implemented using a custom command and the addShortCut method:
<telerik:RadEditor ID="RadEditor1" runat="server" OnClientLoad="OnClientLoad">
<Content>
Text<br/>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ol>
<br/>
<table>
<tr>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<td>Cell</td>
<td>Cell</td>
</tr>
</table>
</Content>
</telerik:RadEditor>
<script type="text/javascript">
function OnClientLoad(editor, args) {
var shortcutManager = editor.get_shortCutManager();
if (shortcutManager.findShortCutByName("InsertTabMozilla")) {
shortcutManager.removeShortCut("InsertTabMozilla");
editor.addShortCut("InsertTab", "TAB");
}
editor.addShortCut("ShiftTabCommand", "Shift+TAB");
editor.addShortCut("Underline", "Cmd+U");
}
Telerik.Web.UI.Editor.CommandList["ShiftTabCommand"] = function (commandName, editor, args) {
var selectedElement = editor.getSelectedElement();
var nodeName = selectedElement.nodeName;
if (nodeName === "LI") {
editor.fire("Outdent");
} else if (nodeName === "TD") {
Telerik.Web.UI.Editor.Utils.MoveToPreviousCell(selectedElement, editor);
} else {
editor.fire("InsertTab");
}
};
</script>
The image constrain tool in the image properties dialog is loaded as disabled by default. Mostly users easily can enable it the whole time, but the better user experience is this tool to be enabled by default. This way the user will be able directly to manipulate the image size without breking the correct proportions.