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.
I've found a bug, it's strange but it's working if i remove a parameter.
I'm french and i've got an application made since year and use Telerik 2017.3 (same in recent) the problem was found by a user who use "point" in numeric pad.
I know this problem was resolved since years, and other website in my society. but i've searched why is again present. and make sample to find difference and remove parameter by parameter of RadNumericTextbox to find who blocked :
Originale code
<telerik:RadNumericTextBox ID="rntbMontantMensuel" runat="server" Enabled="true" IncrementSettings-InterceptArrowKeys="False" IncrementSettings-InterceptMouseWheel="False" DataType="Currency" ShowSpinButtons="false" MinValue="0" NumberFormat-DecimalDigits="2" RenderMode="Auto" EnabledStyle-Width="220px" EmptyMessage="0 " EnabledStyle-HorizontalAlign="right" FocusedStyle-HorizontalAlign="right" ReadOnlyStyle-HorizontalAlign="Center" HoveredStyle-HorizontalAlign="right" Type="Currency" AutoPostBack="true" ClientEvents-OnFocus="disableValide" ClientEvents-OnBlur="enableValide" NumberFormat-KeepNotRoundedValue="True"></telerik:RadNumericTextBox>Code worked :
<telerik:RadNumericTextBox ID="rntbMontantMensuel" runat="server" Enabled="true" IncrementSettings-InterceptMouseWheel="False" DataType="Currency" ShowSpinButtons="false" MinValue="0" NumberFormat-DecimalDigits="2" RenderMode="Auto" EnabledStyle-Width="220px" EmptyMessage="0 " EnabledStyle-HorizontalAlign="right" FocusedStyle-HorizontalAlign="right" ReadOnlyStyle-HorizontalAlign="Center" HoveredStyle-HorizontalAlign="right" Type="Currency" AutoPostBack="true" ClientEvents-OnFocus="disableValide" ClientEvents-OnBlur="enableValide" NumberFormat-KeepNotRoundedValue="True"></telerik:RadNumericTextBox>Yes if i've IncrementSettings-InterceptArrowKeys="False"
when user press "." in numeric pad, i've got an icon "block" (red cross inside circle) and don't change my point to coma (French decimal separator)