Hi Telerik support
We use a rather old version of RadEditor (sorry) - v2011.1 and in many places on our site it's hidden initially until someone clicks the EDIT button. We've a few different problems with browsers:
If I use it in ContentAreaMode=Iframe, it works with IE (IE is forced into IE9 mode by meta X-UA-compatible), but I encounter issues pasting content into it using Ctrl+V in firefox
If I switch it to ContentAreaMode=Div, then i can paste in firefox, but clients that use IE11 complain that all the buttons above the editor box stop working. (I've verified the truth of this, http://www.telerik.com/forums/incorrect-rendering-of-radeditor-when-shown-with-ajax-in-initially-hidden-parent didn't seem to help). If I change the meta tag so that the browser runs in IE11 mode rather than IE9, the buttons work, but then the image manager fails (clicking the Select button to upload an image does nothing. The javascript console is full of errors like Sys.ArgumentOutOfRangeException: Value must be an integer.
Parameter name: x Actual value was 0.75555555555555555555555). Image manager in IE11 native, in iframe mode is seriously graphically corrupt; only the top third of the modal window shows content/doesn't scroll properly/ borders are missing
Elsewhere in this code I maintain there are patch/workarounds for other rad controls, like:
Telerik.Web.UI.RadListBox.prototype.saveClientState = function () {
var clientState = '{"logEntries":' + this._logEntriesJson + ',"selectedIndices":' + this._selectedIndicesJson + ',"checkedIndices":' + this._checkedIndicesJson + ',"scrollPosition":' + this._scrollPosition.toFixed() + "}";
return clientState;
};
Where parameters that are expected to be integers are being sent by the browser as floats..
It seems that for a long time and with the advent of new browsers, the default way of getting things working has been to patch a bit here, set some compatibility mode there, and I should probably attack the problem with a fresh approach; just wondering what that approach would be and whether it involves new versions of the telerik controls, or whether this old version can be made to work acceptably? I'm not sure how much budget there is in replacing the entire control suite at this time, when a planned rewrite of the the entire system, using newer rad controls is imminent, you see..
Hallo,
I'm trying to apply the RadMap in a website and found the following issue:
I took your example of mapping shapes and tiles and adjusted the tileserver by adding a link to a tile server that our company is also using in other projects. The tiles are shown on the screen en the created map can be exported to a SVG file through the RadClientExportManager. But while the PNG- and PDF export of the OSM example link is working fine, the PNG- and PDF export of our own tile server maps does not work.
I checked the setup of OSM and our own tileserver. The result on the screen and the source html is exactly the same, except for the reference to the images.
The new references are with a https link instead of a http link and include a parameter with a reference to an apikey:
https://aaaa.bbbbbbb.net/#= zoom #/#= x #/#=y #.png?apikey=xxxxxxxxx
I did not get the appliction working by using the special MapLayer.Key, like is done with the Bing maps. So I have to apply the URL parameter.
The user interaction for popping up the PNG file is not shown at all and the PDF file is created without the map.
Any idea?
Hans Wapenaar
Posted this in the wrong section initially...
I was wondering if there were any plans to introduce a sort of collaborative real-time editor, similiar to how Google allows users to edit documents at the same time, and visually see the edits as they take place.
Hello
Does RadCaptcha use Silverlight? In IE 11 I get a Silverlight warning on my pages that have RadCaptcha on them, I also get it on the RadCaptcha demo page, image attached. is there any way to avoid this warning?
Hi, I have a Radcombobox as a data item within a RadGrid. I have needdatasource and itemdatabound methods for the RadGrid during which I load the Radcomboboxes in the Grid.
<telerik:RadGrid
id="testMappingGrid"
runat="server"
HorizontalAlign="Center"
Visible="true"
Width="782px"
OnNeedDataSource="testMappingGrid_NeedDataSource"
OnItemDataBound="testMappingGrid_ItemDataBound"
EnableViewState="true"
Skin="Silk" MasterTableView-EnableViewState="true">
<MasterTableView runat="server" AutoGenerateColumns="false" DataKeyNames="prodID">
<Columns>
<telerik:GridBoundColumn DataField="prodID" DataType="System.Int32"
HeaderText="ID" SortExpression="prodID"
UniqueName="prodID" Visible="True" Display="true">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="prodName" HeaderText="Product"
SortExpression="prodName" UniqueName="prodName" ItemStyle-Width="200px">
</telerik:GridBoundColumn>
<telerik:GridTemplateColumn HeaderText="Test Tool" SortExpression="testTool" UniqueName="testTool" ItemStyle-Width="120px">
<ItemTemplate>
<telerik:RadComboBox ID="testTool"
runat="server"
DataSourceID="testtoolsSqlDataSource"
Skin="Metro"
OnSelectedIndexChanged="testTool_OnSelectedIndexChanged"
DataTextField="Name"
DataValueField="ToolsID"
Width="120px"
Height="200px"
AutoPostBack="true" />
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="Test Project" SortExpression="testToolProject" UniqueName="testToolProject" ItemStyle-Width="142px">
<ItemTemplate>
<telerik:RadComboBox ID="testProjName"
CausesValidation="false"
Height="200px"
runat="server"
Width="142px"
DropDownWidth="200px"
Skin="Metro"
AutoPostBack="true" EnableViewState="true" ViewStateMode="Enabled"
>
</telerik:RadComboBox>
<...>
-----------------------------------------------------------------------------------------------
The Radcomboxes are losing selected values after postback. Is there a way to retain selected values in a Radcombobox across postbacks?
Thanks,
Sandeep
We are noticing Telerik client-side (Javascript) code referencing a NULL object after clearing the Nodes in a TreeView control on the client side.
With the following sample file, we can see the error after expanding, then collapsing the root node:
<%@ Page Language="C#" AutoEventWireup="true" Inherits="System.Web.UI.Page" %>
<
script
runat
=
"server"
>
void Page_Load(object sender, EventArgs e)
{
var node = new RadTreeNode("1");
node.ExpandMode = TreeNodeExpandMode.ServerSideCallBack;
node.Nodes.Add(new RadTreeNode("2"));
TV.Nodes.Add(node);
}
</
script
>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
>
<
title
>Telerik TreeView Test</
title
>
</
head
>
<
body
>
<
form
id
=
"DialogForm"
runat
=
"server"
>
<
telerik:RadScriptManager
ID
=
"SM"
runat
=
"server"
/>
<
telerik:RadTreeView
ID
=
"TV"
runat
=
"server"
OnClientNodeCollapsed
=
"collapse"
/>
</
form
>
<
script
type
=
"text/javascript"
>
function collapse(sender, args) {
var node = args.get_node();
sender.trackChanges();
node.get_nodes().clear();
sender.commitChanges();
}
</
script
>
</
body
>
</
html
>
Can we accomplish clearing the nodes with error by setting a value somewhere, or do we need to wait for a patch to fix this issue?
How to custom template in header filter context menu. Don't use default template header filter context menu.
Thanks
I have a datepicker to filter a GridDateTimeColumn of a RadGrid. Since the default size of the filter textbox was too big, I have made it smaller, along with the datepicker button. However, I wasn't able to resize the calendar icon of the datepicker button which is now overflowing (see attached image).
I tried using the debug tools of every browser to find out the name of the glyph icon or the CSS class that implement it but wasn't successful.
Is there a way to change or resize this icon, maybe through jQuery?
Thanks in advance!
Hi,
We try to customize editor font names. We added 5 font names which not include "Times New Roman" but when refresh the page, we still see the default one is "Times New Roman" ( see attachment ). Can we change the default value as the first one in the dropdownlist?
Thanks in advance,
Lan