Hello,
I know there exist events that precede exporting to Excel (such as InfrastructureExporting)... but does there exist one that is fired after export is finished and the file is ready to download? We're talking standard server side Telerik export via GridTableView.ExportToExcel().
Thank you.

How do you process a GanttToolbarItem custom command server-side?
The documentation https://docs.telerik.com/devtools/aspnet-ajax/controls/gantt/functionality/client-templates#toolbar-template here does not provide a C# example.

I have a RadMenu with a "Close Window" button. Each of the other buttons changes the visible RadPageView in a RadMultiPage. The close button works fine if it's the first button clicked. However, if any of the other buttons in the RadMenu are clicked first, clicking the Close Window button shows "Scripts may only close windows that were open by it" in the JavaScript console.
From what I understand, the problem is due to the RadMenu's postback (which is necessary in this case). Is there any way around this behavior to allow the "Close Window" button to keep working?

Hi,
Telerik grid functionalities such as pagination, filter and sorting are not working in Google Chrome, however it works only in Internet Explorer. Please provide us the solution.
Hello,
I would like the user to have the ability to zoom in and out of a Day view.
I've added the following to the toolbar;
<Toolbar>
<ClientTemplate>
<a class="k-button" onclick="return ganttZoomIn(this, event)" title="Zoom In">+</a>
<a class="k-button" onclick="return ganttZoomOut(this, event)" title="Zoom Out">-</a>
</ClientTemplate>
</Toolbar> and the following javascript;
function ganttZoomIn(button, ev)
{
var gantt = $find("<%= RadGannt1.ClientID %>");
gantt._viewsData[0].slotSize += 10;
}
function ganttZoomOut(button, ev)
{
var gantt = $find("<%= RadGantt1.ClientID %>");
gantt._viewsData[0].slotSize -= 10;
}But the changes to the slot size is not changing the Gantt.
Can the slot size be updated using javascript?
Thanks,
Matt

I'm experiencing an issue where RadEditor in a modal is breaking out of a Bootstrap column and card.
Any solution to contain the RadEditor that renders as a table properly?
I imported some excel files with UI for ASP.NET AJAX R2 2021 SP1 (version 2021.2.616)
but rendering result is different from Demo, font size. and one file occurred some error in my project.
How to do this problem?
I attached 2 excel files.
Thank you.

Hello,
I have followed the example shown here https://demos.telerik.com/aspnet-ajax/map/examples/data-binding/dataset/defaultcs.aspx to add a marker collection via a DataSet on my map.
I am now trying to remove or update the locations without success, either by re-setting the DataSource object or my clearing the MarkersCollection without any success. For example:
protected void ClearMarkers_Click(object sender, EventArgs e) {
RadMap.MarkersCollection.Clear();
RadMap.DataSource=null;
RadMap.DataBind();
}
Hello,
I have a problem with RadHtmlChart export to base64:
With UI for ASP.NET AJAX R3 2017, I generate my chart on a div with a "display : none" and after, on JS, I take the value (base64) of this graph and I can generate my image:
But with UI for ASP.NET AJAX R1 2021, if I generate my chart on this div, the chart doesn't take full size of the canvas and when I generate the image, the chart wasn't in full screen:
Do you have an idea why my canvas don't take the full size?
Hi,
My web applications have no permission to install telirik asp.net components (RadButton) during runtime in vmware/RDSH environment? how can i solve this problem? thx.