Rather than relying on pure javascript to instantiate a Map, which some developers way struggle with, introduce a map control that has server side functions (as well as client side) to select areas, geo-code, and add markers. Add the features contained in http://www.telerik.com/products/wpf/map.aspx Also, to be able to databind to a collection, specifying a LatitudeDataValue, and LongitudeDataValue and DisplayMemberValue which describes the Lat/Lng and marker names, without the need for client JS! Would love to see the heatmaps implemented in particular.. Any other takers??
New control that can create / read / write PDF documents similar to "removed by admin"
In the same way that ASP.NET MVC wrappers are supported...
This bug causes incorrect user behavior. Lists cannot be disconnected with Enter, in some cases user cannot add multiple empty paragraphs.
For the time being you can resolve the issue by incorporating the following JS code block:
<telerik:RadEditor runat="server" ID="RadEditor1">
</telerik:RadEditor>
<script type="text/javascript">
var setCursorFn = Telerik.Web.UI.Editor.Utils._setCursorInNode;
Telerik.Web.UI.Editor.Utils._setCursorInNode = function (cursorElement, container, editor) {
setCursorFn.call(this, cursorElement, container, editor);
if ($telerik.isChrome) {
var selection = editor.getSelection();
var range = selection.getRange();
if (!range.collapsed) {
range.collapse();
selection.selectRange(range);
}
}
}
</script>
In case where RadButton is set as DefaultButton to the form or a panel and should trigger validation it does not PostBack the page regardless if the page is valid or not
Button single click becomes disabled permanently if a validation error is detected. After satisfying the validator conditions the button doesn't get enabled and it is not possible to post back the page.
Hi Telerik Team, I'd like to suggest a control with a real gantt chart, something like a ms project. I and others are using external controls to have this functionalitty Thanks, best Daniel
In pure IE6 the DropDownAutoWidth does not work as expected e.g. the dropdown gets too wide.
Based on customer feedback: I put a DrowDownTree, then I put another textbox under DrowDownTree. If I expand the item of DrowDownTree, I found some item will be shut out by textbox. Only happens in _pure_ IE6
I struggled for weeks on the problem "Telerik$ is undefined". I Always got this problem after closing a RadWindow. But only on my development machine, not in the production version at customer site.
After I bought a new laptop, I hoped the problem would disappear due to complete reinstall. However this was not the solution.
After weeks of search I found out that the problem is caused due to a DESTROYONCLOSE = TRUE in the RadWindowManager definition of the RadWindow. As soon as I change that to FALSE, my problem disappears.
Hopefullly this is a clue to you guys to fix this problem.
Best regards,
Guy Van Dyck
<telerik:RadWindowManager ID="RadWindowManager" runat="server" Modal="True" Width="1030px" Height="700px" Top="10px" Animation="Fade" ShowContentDuringLoad="False" ReloadOnShow="True" style="z-index: 10000" OnClientClose="RadWindowOnClientClose" DestroyOnClose="True" Behaviors="Move">
<Windows>
<telerik:RadWindow ID="RadWindow1" runat="server" Top="10px" ReloadOnShow="true" DestroyOnClose="false" AutoSize="False" Modal="True" OnClientClose="RadWindowOnClientClose" Animation="Fade" Behaviors="Move">
</telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>
It would be nice to have a calculator input field.