Hi Telerik,
I'm using 2021.2.616.45 AJAX controls and I have the bubble layer working as per your example https://demos.telerik.com/aspnet-ajax/map/examples/functionality/bubble-layer/defaultcs.aspx
But I can't get the tooltip to work.
<telerik:RadMap RenderMode="Lightweight" runat="server" ID="rmDeliveryHeatmap" Zoom="3" MinZoom="2" MaxZoom="16" Width="98%">
<ClientEvents OnShapeMouseEnter="onShapeMouseEnter"/>
<CenterSettings Latitude="23" Longitude="10" />
<LayersCollection>
<telerik:MapLayer Type="Tile" Subdomains="a,b,c"
UrlTemplate="https://#= subdomain #.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png"
Attribution="© <a href='https://osm.org/copyright' title='OpenStreetMap contributors' target='_blank'>OpenStreetMap contributors</a>.">
</telerik:MapLayer>
<telerik:MapLayer Type="Bubble" ClientDataSourceID="RadClientDataSource" ValueField="DeliveryCount" LocationField="Location">
<TooltipSettings Position="Top" Template="<p>#= marker.dataItem.ItemCount #</p>" />
<StyleSettings>
<FillSettings Opacity="0.4" Color="#00cc66"/>
<StrokeSettings Width="0" />
</StyleSettings>
</telerik:MapLayer>
</LayersCollection>
</telerik:RadMap>I'm guessing that the object name in the Template attribute is wrong.
<TooltipSettings Position="Top" Template="<p>#= marker.dataItem.ItemCount #</p>" />Please can you provide a working example.
Cheers,
Matt
Hello,
In a UserControl, in the ascx file, we have a RadAjaxManagerProxy.
In codebehind, we have this code :
RadAjaxManager manager = RadAjaxManager.GetCurrent(Page);
manager.ClientEvents.OnResponseEnd += "responseEnd" + this.ClientID + ";";In a page, we have 2 versions of this usercontrol.
On the last responseEnd js function is fired. The first one is not.
Do you have any idea to help me ?
Thank you for your help.

We use the Radmediaplayer. However on page load, it loads the first chunk of the media file. When looking at the network logs we confirmed it loads on page load. Note this is not auto play, the file does not start until we press play.
What this means is that our stats are reporting very high file consumption and reporting downloads is not correct. We would like to stop the preload. Our current code is:
<telerik:RadMediaPlayer ID="RadMediaEpisodePlayer" Height="300" Width="100%"
EnableViewState="false" runat="server" AutoPlay="false"
HDActive="false"
RenderMode="Auto">
</telerik:RadMediaPlayer>

Hi Team,
I am getting the below error while debugging one of our code .
though the entry is present in the web.config
<httpHandlers>
<add path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" validate="false" />
<add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false" />
<add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />
<add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" validate="false" />
<add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
</httpHandlers>
Can you please help me with this?

Hi Telerik Team,
Our customer found strip plugin doesn't work properly on MAC OS not matter what browser they choose ( Chrome and Safari ). We found the same issue on Telerik editor demo site too. Is there any walk-around or coming release to fix the issue ?
How to reproduce it:
1. go to https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx
2. switch to "HTML" mode, then copy and paste following
<p><span style="color: rgb(34, 38, 53); font-size: 14.5pt; font-family: Cambria, serif; line-height: 107%;">Vue uses HTML templates and JSX to render the content onto DOM, while React only uses JSX, which is essentially an extension that allows you to insert HTML directly into JS code.</span></p>
<p><span style="color: rgb(34, 38, 53); font-size: 14.5pt; font-family: Cambria, serif; line-height: 107%;"> </span></p>
<h3 style="margin: 15pt 0in 7.5pt;"><code><span style="color: rgb(84, 84, 84); background: rgb(242, 242, 242); font-size: 14pt; font-family: Consolas; letter-spacing: -0.4pt;">beforeCreate</span></code></h3>
<p><span style="color: rgb(51, 51, 51); font-family: "Segoe UI", sans-serif;">The </span><code><span style="color: rgb(84, 84, 84); background: rgb(242, 242, 242); font-size: 11.5pt; font-family: Consolas; line-height: 107%;">beforeCreate</span></code><span style="color: rgb(51, 51, 51); font-family: "Segoe UI", sans-serif;"> hook runs at the very initialization of your component. </span><code><span style="color: rgb(84, 84, 84); background: rgb(242, 242, 242); font-size: 11.5pt; font-family: Consolas; line-height: 107%;">data</span></code><span style="color: rgb(51, 51, 51); font-family: "Segoe UI", sans-serif;"> has not been made reactive, and </span><code><span style="color: rgb(84, 84, 84); background: rgb(242, 242, 242); font-size: 11.5pt; font-family: Consolas; line-height: 107%;">events</span></code><span style="color: rgb(51, 51, 51); font-family: "Segoe UI", sans-serif;"> have not been set up yet:</span></p>
3. back to design mode, run "Strip All Format" option
4. check the result, it's not the same if you use MAC OS or Windows OS
Thanks in advance,
Lan
When scaling browser viewport the LightBox image aspect ratio is not preserved.
What can we do to make this work?
Thanks for yr time.
Marc

Hi,
we display a RadChart and hook up to its Click() event. All works fine when we click on a chart segment. But if the chart has a legend, the legend is clickable (too) and if a user clicks it we get below error.
Is there a way to fix this? Can we make the legend non-clickable?
The version we use is 2020.2.617.45
Thanks
Michael
Beim Ausführen der aktuellen Webanforderung wurde einen unbehandelte
Ausnahme generiert. Informationen über den Ursprung und die Position der
Ausnahme können mit der Ausnahmestapelüberwachung angezeigt werden.
|
|
Please can you provide an example of how to draw a bubble map (as per https://demos.telerik.com/aspnet-ajax/map/examples/functionality/bubble-layer/defaultcs.aspx) but with a SQL source.
I have a Latitude, a Longitude and an integer value being returned from a stored procedure and I would like to display this as a bubble map.
I would like to assign a System.Data.DataTable to a Telerik.Web.UI.RadMap.DataSource in C#.
even in the example it fails on press "Search":
https://demos.telerik.com/aspnet-ajax/datepicker/overview/defaultcs.aspx
Hi, I have a RadGrid with some columns with different widths defined in the markup file aspx. Radgrid is displayed fine, but if I set the EditMode property to "Batch" then all column widths are moved to the same value (a proportional width = total width / number of columns). If I remove EditMode="Batch" from MasterTableView item the Radgrid show the correct width for each columns
Please, have you some idea to help me to fix this issue?