<telerik:RadMaskedTextBox ID="RadMaskedTextBox2" Runat="server" Mask="<0..255>.<0..255>.<0..255>.<0..255>" ZeroPadNumericRanges="false" PromptChar=""> </telerik:RadMaskedTextBox> Should render 192.168.1.1 instead of 192.168.__1.__1
In case, where paragraph(<p>) with style "font-style: normal" is nested inside table cell (<td>) with style "style="font-style: italic;" the command incorrectly displays that the content has italic decoration applied and if used the cell is split into three new cells.
Problem:If I used master page and put there RadSkinManager how can I used designer in page inherit from the master ? Solution:I can only use the designer in the page where the control is situated. Suugestion:Make proxy for RadSkinManager like RadAjaxManagerProxy
This issue causes inconvenience among users. Block elements in the content cannot be edited properly when used in the RadEditor.
You can workaround this problem by overriding the setActive method of the RadEditor's object:
<telerik:RadEditor runat="server" ID="RadEditor1">
</telerik:RadEditor>
<script type="text/javascript">
Telerik.Web.UI.RadEditor.prototype.setActive = function () {
var $T = Telerik.Web.UI;
if (this._emptyMessageContainer) this._hideEmptyMessage();
if ($telerik.isIE && this.getSelection().isControl()) return;
var curArea = this.get_mode() == $T.EditModes.Html ? this._getTextArea() : this.get_contentArea();
if ($telerik.isIE) {
var activeElement = this.get_document().activeElement;
if ((activeElement && activeElement == curArea) ||
$telerik.$.contains(curArea, activeElement)) {
return;
}
}
if (curArea && curArea.setActive) curArea.setActive();
};
</script>
TypeScript declarations for the ASP.NET AJAX controls will be of great help for developing projects in TypeScript. See this forum thread for more information: http://www.telerik.com/forums/typescript-declarations
The links in Preview mode should not be opened at all or at least opened automatically in a new window, so that user could preserve its content.
Possible resolution is to invoke the setTargetsForPreview method on the OnClientLoad event of the editor:
<telerik:RadEditor runat="server" ID="RadEditor1"
EditModes="Preview" OnClientLoad="OnClientLoad">
<Content>
<a href="http://www.telerik.com">Link</a>
</Content>
</telerik:RadEditor>
<script type="text/javascript">
function OnClientLoad(editor, args) {
Telerik.Web.UI.Editor.Utils.setTargetsForPreview(editor);
}
</script>
This behavior stops the user to be able o insert these elements without being tracked
The link manager provides approach to add anchors with unique ID and name. The name should be inserted dynamically in a collection shown in the "Existing Anchor" drop down. For some reason this dropdown is never populated without reloading the RadWindow.
Possible resolution is forcing the dialog to reload on each show:
<telerik:RadEditor ID="RadEditor1" runat="server" OnClientCommandExecuted="OnClientCommandExecuted">
</telerik:RadEditor>
<script type="text/javascript">
function OnClientCommandExecuted(editor, args) {
var command = args.get_commandName();
if (command === "LinkManager") {
var dialogOpener = editor.get_dialogOpener();
var linkManager = dialogOpener._dialogContainers[command];
linkManager.add_show(function () {
linkManager.reload();
});
}
}
</script>
This property will define the MaxJsonLenght size.
Short version: needed for IE browsers and overlaying external plugins such as PDF To overlay external content such as PDF in some browsers, we need just Z-index. In other, we need an iframe inside the overlay.
This issue causes some content added by user to be not included when Track Changes are accepted. This is because the text is inserted in the INS tag, which is determined as deleted text by the feature's logic.
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.
a radmenu with input-fields would be very usefull this would work the same way like a configuration-menu