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
I have a radwizard with each tab having a user control. I have the RenderedSteps="Active" set in my wizard but it calls the page load for all the user controls. I was expecting to see the page load only for the first step to be called.
What am i missing?
<
telerik:RadWizard
ID
=
"wizEnrollment"
runat
=
"server"
RenderMode
=
"Lightweight"
OnPreRender
=
"wizEnrollment_PreRender"
RenderedSteps
=
"Active"
OnNextButtonClick
=
"ContinueButton_Click"
OnFinishButtonClick
=
"UpdateBeneficiaryDesignationButton_Click"
OnCancelButtonClick
=
"FinishButton_Click"
>
<
WizardSteps
>
<
telerik:RadWizardStep
ID
=
"DeferralElectionStep"
Title
=
"Deferral Elections"
runat
=
"server"
CausesValidation
=
"true"
ValidationGroup
=
"DeferralElections"
>
<
iSys:deferralElections
ID
=
"ucDeferralElections"
runat
=
"server"
/>
</
telerik:RadWizardStep
>
<
telerik:RadWizardStep
ID
=
"DistributionELectionStep"
Title
=
"Distribution Elections"
runat
=
"server"
CausesValidation
=
"true"
ValidationGroup
=
"DistributionElections"
>
<
iSys:paymentOptions
ID
=
"ucPaymentOptions"
runat
=
"server"
/>
</
telerik:RadWizardStep
>
<
telerik:RadWizardStep
ID
=
"FundAllocationStep"
Title
=
"Fund Allocations"
runat
=
"server"
CausesValidation
=
"true"
ValidationGroup
=
"FundAllocations"
>
<
iSys:fundBucket
ID
=
"ucFundAllocations"
runat
=
"server"
/>
</
telerik:RadWizardStep
>
<
telerik:RadWizardStep
ID
=
"EnrollmentSummaryStep"
Title
=
"Enrollment Summary"
DisplayCancelButton
=
"true"
StepType
=
"Finish"
runat
=
"server"
CausesValidation
=
"false"
>
<
iSys:summary
ID
=
"ucEnrollmentSummary"
runat
=
"server"
/>
</
telerik:RadWizardStep
>
</
WizardSteps
>
</
telerik:RadWizard
>